/* ============================================================
   MAIN.CSS — Master Stylesheet for NeoD2C Website
   ------------------------------------------------------------
   STRUCTURE:
   1.  Google Fonts Import
   2.  CSS Variables (Colors, Fonts)
   3.  Global Reset & Base Styles
   4.  Navbar
   5.  Footer
   6.  Hero Section          — nh-
   7.  Stats / Pain Points   — sp-
   8.  Features Section      — feat2- + feat-
   ============================================================ */


/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,900&display=swap');


/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
    /* Fonts */
    --font-primary:   'Satoshi', sans-serif;
    --font-nunito:    'Nunito Sans', sans-serif;

    /* Brand Colors */
    --color-primary:        #053679;
    --color-primary-dark:   #085394;
    --color-primary-light:  #CFE8FF;
    --color-accent:         #DBE6FE;
    --color-accent-hover:   #E9F0FE;
    --color-bg-light:       #F3F7FF;
    --color-bg-grey:        #F5F7FA;
    --color-bg-main:        #EFEFEF;

    /* Text Colors */
    --color-text-dark:      #272727;
    --color-text-body:      #333333;
    --color-text-muted:     #7A7A7A;
    --color-text-white:     #ffffff;

    /* Status Colors */
    --color-success:        #5BA640;
    --color-error:          #DB504A;
    --color-warning:        #FFCE26;
    --color-warning-light:  #FFF2C6;
    --color-orange:         #FD7238;
    --color-orange-light:   #FFE0D3;

    /* Neutrals */
    --color-white:          #ffffff;
    --color-grey-light:     #eeeeee;
    --color-grey:           #AAAAAA;
    --color-border:         #D0D5DD;

    /* Shadows */
    --shadow-card:    0px 4px 8px 0px #ABBED1;
    --shadow-sm:      0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md:      0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg:      0 16px 48px rgba(59, 91, 219, 0.13);

    /* Border Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   24px;

    /* Transitions */
    --transition-fast:   0.2s ease;
    --transition-base:   0.3s ease;
    --transition-slow:   0.5s ease;
}

body.dark {
    --color-white:      #0C0C1E;
    --color-grey-light: #060714;
    --color-text-dark:  #FBFBFB;
}


/* ============================================================
   3. GLOBAL RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: var(--color-text-dark);
    background-color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 { font-size: 40px; font-weight: 600; line-height: 1.3; }
h2 { font-size: 32px; font-weight: 500; line-height: 1.3; color: #212121; }
h3 { font-size: 23px; font-weight: 500; line-height: 1.4; }
h4 { font-size: 24px; font-weight: 500; margin-bottom: 13px; }

hr {
    height: 2px;
    border: none;
    background-color: #e0e0e0;
    margin-top: 6%;
}


/* ============================================================
   4. NAVBAR
   ============================================================ */
nav {
    position: absolute;
    top: 0;
    width: -webkit-fill-available;
}

.navMain {
    height: 72px;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: -webkit-fill-available;
    background: var(--color-white);
    z-index: 9999;
    top: 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.menu {
    display: none;
}

.navMain ul {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 50px;
    margin-top: 20px;
}

.navMain ul li a {
    display: flex;
    column-gap: 5px;
    align-items: center;
    color: var(--color-text-dark);
    justify-content: space-between;
}

.navMain ul img {
    object-fit: scale-down;
    width: 32px;
    height: 25px;
    margin-top: 2px;
}

.navMain ul li h3 {
    font-size: 16px;
    line-height: 24.36px;
    font-weight: 600;
    padding: 0;
}


.navMain ul li p {
    font-weight: 500;
    margin-top: 5px;
    font-size: 16px;
    margin-left: 5px;
}

.navMain ul li a.active,
.navMain ul li.active a h3 {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-link {
    font-size: 18px;
    text-decoration: none;
    color: #000;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-base), color var(--transition-base);
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
    text-underline-offset: 5px;
}

.displayMb {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-nav-link {
    width: auto;
}

.menu-nav-link h3 {
    margin: 0;
    white-space: nowrap;
    font-size: 16px;
}

.platformsNav {
    position: relative;
}

.downArrowListDis {
    display: none;
}

.arrow-container {
    position: absolute;
    top: -13px;
    left: 95px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 13px solid var(--color-white);
}

.navMain ul li .downArrowListDis .downArrowList {
    position: absolute;
    width: 158%;
    border: none;
    border-radius: var(--radius-md);
    margin-top: 18px;
    padding: 10px;
    display: grid;
    background: var(--color-white);
    box-shadow: 0px 0px 4px 4px beige;
}

.navMain ul li .downArrowListDis .downArrowList p {
    font-size: 15px;
    font-weight: 400;
}

.navMain ul li .downArrowListDis .downArrowList li a span {
    display: flex;
    padding: 2px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-white);
    border-bottom: none !important;
}

.navMain ul li .downArrowListDis .downArrowList li a span:hover {
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 600;
    border-left: 2px solid var(--color-primary);
    border-bottom: none !important;
}

.navMain ul li .downArrowListDis .downArrowList li a p:hover {
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 500;
    border-left: 4px solid var(--color-white);
    border-bottom: none !important;
}

.solutions-nav-item {
    position: relative;
}

.solutions-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 237px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-accent);
    box-shadow: var(--shadow-lg), 0 2px 8px rgba(0,0,0,0.06);
    padding: 10px;
    z-index: 9999;
    animation: dropIn 0.2s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.solutions-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border-left: 1px solid var(--color-accent);
    border-top: 1px solid var(--color-accent);
    transform: translateX(-50%) rotate(45deg);
}

.solutions-nav-item:hover .solutions-dropdown,
.solutions-nav-item.open .solutions-dropdown { display: block; }

.solutions-nav-item:hover .chevron,
.solutions-nav-item.open .chevron { transform: rotate(180deg); }

.dropdown-option:hover { background: var(--color-accent-hover) !important; }
.dropdown-option:hover .option-arrow { opacity: 1 !important; transform: translateX(3px); }

.active-page { background: var(--color-accent-hover); }
.active-page strong { color: #3b5bdb !important; }

.underline-effect,
.underline-effect1,
.underline-effect2,
.underline-effect3 {
    position: relative;
}

.underline-effect::after,
.underline-effect1::after,
.underline-effect2::after,
.underline-effect3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-slow);
}

.underline-effect:hover,
.underline-effect1:hover,
.underline-effect2:hover { color: var(--color-primary); }

.underline-effect3:hover { color: #000079; }
.underline-effect3::after { background-color: #000079; }

.underline-effect:hover::after  { width: 72%; }
.underline-effect1:hover::after { width: 100%; }
.underline-effect2:hover::after { left: 8px; width: 70%; }
.underline-effect3:hover::after { width: 100%; }

@media screen and (max-width: 1067px) {
    .navMain {
        padding: 15px 40px;
        height: 60px;
        width: 100%;
    }

    .leftNav img { width: 150px; }
    .navMain ul { column-gap: 10px; }
    .navMain ul li h3 { font-size: 16px; }

    .menu {
        display: block;
        align-items: center;
        position: relative;
    }

    .navMain .displayMb {
        display: none;
        position: absolute;
        top: 90px;
        width: 85%;
        text-align: left;
        background: var(--color-white);
    }

    .navMain ul li .downArrowListDis .downArrowList {
        position: absolute;
        display: grid;
        justify-content: flex-start;
        width: 100%;
        margin-top: 25px;
    }

    .navMain ul li .downArrowListDis .downArrowList li { text-align: left; }
    .navMain ul li .downArrowListDis .downArrowList p { padding: 5px; font-weight: 500; }

    .solutions-dropdown {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        animation: none;
    }
    .solutions-dropdown::before { display: none; }
    .solutions-nav-item:hover .solutions-dropdown { display: none; }
    .solutions-nav-item.open .solutions-dropdown { display: block; }

    .underline-effect::after,
    .underline-effect1::after,
    .underline-effect2::after,
    .underline-effect3::after { content: none; }
}

@media screen and (max-width: 600px) {
    .navMain { padding: 20px; }
    .leftNav img { width: 140px; }

    .navMain .displayMb {
        top: 70px;
        margin: 8px 1px 10px 5px;
        padding: 11px 12px 10px 1px;
    }

    .nav-link {
        font-size: 18px;
        padding: 1px 15px;
    }

    .navMain ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu {
        display: block;
        font-size: 18px;
        cursor: pointer;
        margin: 8px 4px 13px 0px;
    }

    .menu.active + ul { display: flex; }

    .navMain ul li h3 { font-size: 16px; font-weight: 400; }
    .navMain ul li .downArrowListDis .downArrowList p { font-size: 16px; font-weight: 400; }
    .navMain ul li .downArrowListDis .downArrowList img { width: 30px; }
    .menu-nav-link a { margin-left: 15.4px; }
    .downArrowListDis { display: none; }

    .navMain ul li .downArrowListDis .downArrowList {
        position: relative;
        width: 100%;
        margin-top: 0;
        background: var(--color-white);
    }

    .navMain ul li .downArrowListDis .downArrowList li { text-align: left; }

    .navMain ul li .downArrowListDis .downArrowList li a span {
        display: flex;
        padding: 5px;
        border-radius: var(--radius-sm);
        border-left: 4px solid var(--color-white);
        border-bottom: none !important;
    }

    .navMain ul li .downArrowListDis .downArrowList li a span:hover {
        color: var(--color-primary);
        cursor: pointer;
        font-weight: 500;
        border-left: 4px solid var(--color-primary);
        border-bottom: none !important;
    }
}


/* ============================================================
   5. FOOTER
   ============================================================ */
.footer_main {
    background-size: 100%;
    color: var(--color-white);
    padding-top: 20px;
}

.footer_span {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px !important;
}

.footer_logo {
    width: auto;
    margin-top: 11px;
    margin-left: 25px;
}

.footerDiv a {
    color: var(--color-white);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16.94px;
}

.footerDiv a:hover {
    color: #4699E3;
    transition: color var(--transition-base);
}

.footer_span1 {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.footer_span1 span {
    display: flex;
    gap: 10px;
}

.footer_span1 span img {
    width: 32px;
    aspect-ratio: 1/1;
    object-fit: contain;
    align-self: baseline;
}

.vailoFooterSpan1 p {
    display: flex;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-white);
}

.footerHead {
    font-size: 18px !important;
    margin-bottom: 10px;
    color: var(--color-white);
}

.hrBottomFooter {
    margin: 10px 62px;
    border: 1px solid var(--color-white);
}

.footerBottom {
    display: flex;
    justify-content: space-between;
    margin: 10px 45px;
    align-items: center;
}

.footerBottom > div {
    display: flex;
    margin: 0 17px;
    align-items: center;
    row-gap: 15px;
    column-gap: 49px;
}

.footerBottom p {
    font-size: 14px;
    color: var(--color-white);
}

.footerBottom1 {
    text-align: center;
    padding-bottom: 10px;
}

.socialLinkDiv { column-gap: 15px !important; }

.socialLink {
    display: inline-flex;
    column-gap: 15px;
}

.footer_icon1 {
    display: flex;
    text-decoration: none;
    justify-content: space-around;
}

.footer_icon1 p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none !important;
    color: var(--color-white);
}

.footer_icon1 a:hover {
    text-decoration: none;
    color: #4699E3;
}

.footer_icon {
    text-decoration: none;
    padding: 5px;
    display: inline-flex !important;
    font-size: large !important;
}

.footer_icon p { margin-left: 10px; }

.arrowUpF {
    position: absolute;
    right: 48.9%;
    top: 6px;
    width: 28px;
}

.lineImg {
    width: -webkit-fill-available;
    margin: 0 81px;
}

@media screen and (max-width: 600px) {
    .footer_span {
        display: flex !important;
        flex-direction: column !important;
        text-align: start;
        margin: 0 20px;
    }

    .footerLogoVailo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        object-fit: scale-down;
    }

    .footer_span1 {
        width: 100%;
        margin: 20px 0;
        text-align: left;
    }

    .hrBottomFooter { margin: 0; }

    .footerBottom {
        margin: 10px 20px;
        display: grid;
        row-gap: 20px;
    }

    .footerBottom > div {
        display: grid;
        margin: 0;
    }

    .arrowUpF {
        right: 48%;
        top: 4px;
        object-fit: contain;
        width: 4%;
    }

    .lineImg {
        width: -webkit-fill-available;
        aspect-ratio: 20/1;
        margin: 0;
    }
}

@media screen and (max-width: 1050px) {
    .footer_span {
        display: flex !important;
        flex-wrap: wrap !important;
        padding-left: 0;
    }

    .footer_span .footerDiv {
        flex: 0 0 50% !important;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .footer_span {
        display: grid;
        grid-template-rows: auto auto;
        justify-content: space-around;
        padding-bottom: 20px !important;
        margin: 10px 83px 10px;
    }

    .item1f { grid-row: 1; grid-column: 1; }
    .item2f, .item3f { grid-row: 2; }
    .item4f, .item5f { grid-row: 3; }

    .arrowUpF {
        right: 49%;
        top: 2px;
        width: 20px;
    }
}


/* ============================================================
   6. HERO SECTION  —  nh- prefix
   ============================================================ */
/* ============================================================
   HERO SECTION  —  nh- prefix
   Paste into main.css
   ============================================================ */

.nh-section {
    width: 100%;
    background: var(--color-white);
    padding: 70px 60px 60px;
     margin-top: -100px;
     margin-bottom: -100px;
    box-sizing: border-box;
    font-family: var(--font-primary);
}


/* ── Dot grid background ── */
.nh-dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ABBED1 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.5) 35%,
    rgba(0,0,0,0.5) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.5) 35%,
    rgba(0,0,0,0.5) 100%
  );
}

/* ── Two-column wrap ── */
.nh-wrap {
    max-width: 1130px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

/* ── LEFT COLUMN ── */
.nh-left {
  display: flex;
  flex-direction: column;
}

/* Badge */
.nh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}

.nh-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
  animation: nh-pulse 2.2s ease-in-out infinite;
}

@keyframes nh-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22); }
  50%       { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.06); }
}

/* Headline */
.nh-headline {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.nh-headline-blue {
  color: var(--color-primary);
}

/* Sub-text */
.nh-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0 0 32px;
}

.nh-sub strong {
  color: var(--color-text-body);
  font-weight: 600;
}

/* CTA buttons */
.nh-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--color-primary);
  color: var(--color-text-white);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 18px rgba(5, 54, 121, 0.22);
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  line-height: 1;
}

.nh-btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(5, 54, 121, 0.28);
}

.nh-btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.nh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--color-white);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid var(--color-border);
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base), transform var(--transition-fast);
  line-height: 1;
}

.nh-btn-ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.nh-btn-ghost:active {
  transform: translateY(0);
}

.nh-play-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-white);
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.nh-btn-ghost:hover .nh-play-wrap {
  background: var(--color-primary-dark);
}

/* Trust row */
.nh-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nh-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ── RIGHT COLUMN ── */
.nh-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nh-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nh-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(5, 54, 121, 0.12));
}


/* ════════════════════════
   RESPONSIVE
════════════════════════ */

@media screen and (max-width: 1067px) {
  .nh-section {
    min-height: auto;
    margin-top: 60px;
    padding: 40px 40px 40px;
  }

  .nh-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nh-left {
    align-items: center;
    text-align: center;
  }

  .nh-sub   { max-width: 100%; }
  .nh-ctas  { justify-content: center; }
  .nh-trust { justify-content: center; }

  .nh-right { width: 100%; }
  .nh-hero-img-wrap { max-width: 420px; margin: 0 auto; }
}

@media screen and (max-width: 600px) {
  .nh-section {
    margin-top: 60px;
    padding: 30px 20px 30px;
  }

  .nh-headline { font-size: clamp(1.9rem, 8vw, 2.4rem); }

  .nh-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nh-btn-primary,
  .nh-btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .nh-trust {
    flex-direction: column;
    gap: 10px;
  }

  .nh-hero-img-wrap { max-width: 300px; }
}
/* ============================================================
   7. STATS / PAIN POINTS SECTION  —  sp- prefix
   ============================================================ */

.sp-section {
    width: 100%;
    /* Matches reference: light blue-grey bg to break from white */
    background: var(--color-bg-light);
    padding: 70px 60px 60px;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

.sp-container {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Header */
.sp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.sp-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.sp-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: -0.025em;
    margin: 0;
}

/* Grid */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card — white to pop off light bg */
.sp-card {
    background: var(--color-white);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow var(--transition-base),
        transform var(--transition-fast),
        border-color var(--transition-base);
}

.sp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

/* Icon box */
.sp-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.sp-icon--red {
    background: #FFF0EE;
    color: #E8472A;
    border: 1px solid #FFCFC9;
}

.sp-icon--orange {
    background: #FFF6EC;
    color: #D97706;
    border: 1px solid #FDDBA6;
}

.sp-icon--purple {
    background: #F4F0FF;
    color: #7C3AED;
    border: 1px solid #DDD6FE;
}

.sp-icon--blue {
    background: var(--color-accent);
    color: var(--color-primary);
    border: 1px solid var(--color-primary-light);
}

/* Stat number */
.sp-stat {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: -0.04em;
    line-height: 1;
}

/* Label */
.sp-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
}

/* Description */
.sp-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0;
}

/* Stats responsive */
@media screen and (max-width: 1067px) {
    .sp-section { padding: 60px 40px; }
    .sp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media screen and (max-width: 600px) {
    .sp-section { padding: 50px 20px; }
    .sp-container { gap: 36px; }

    .sp-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sp-card {
        padding: 22px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }

    .sp-icon { margin-bottom: 0; }
    .sp-stat { font-size: 2rem; width: 100%; }
}


/* ============================================================
   8. FEATURES SECTION  —  feat2- prefix (cards)
               +  feat-  prefix (header)
   ============================================================ */

/* Section wrapper — white bg, back to contrast with sp- light bg */
/* ============================================================
   PLATFORM FLOW SECTION  —  pf- prefix
   ============================================================ */

.pf-section {
    width: 100%;
    background: var(--color-white);
    padding: 70px 60px 60px;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

.pf-container {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Header ── */
.pf-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.pf-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.pf-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: -0.025em;
    margin: 0;
    /* override global h2 */
    color: var(--color-text-dark);
}

/* ── Flow row ── */
.pf-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

/* ── Arrow ── */
.pf-arrow {
    font-size: 20px;
    color: #C5CDD8;
    flex-shrink: 0;
    margin-top: 28px;
    padding: 0 6px;
    line-height: 1;
    font-weight: 300;
}

/* ── Single step ── */
.pf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 4px;
}

/* ── Icon circle ── */
.pf-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pf-step:hover .pf-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Icon color variants — matching reference */
.pf-icon--blue {
    background: #EBF4FF;
    color: #1D6FD8;
    border: 1.5px solid #C3DEFF;
}

.pf-icon--green {
    background: #E6F7EF;
    color: #1A7A4A;
    border: 1.5px solid #B3E8CF;
}

.pf-icon--orange {
    background: #FFF4E6;
    color: #D97706;
    border: 1.5px solid #FDDBA6;
}

.pf-icon--teal {
    background: #E6FAF8;
    color: #0F8C7E;
    border: 1.5px solid #A7E8E3;
}

.pf-icon--purple {
    background: #F0EEFF;
    color: #6C47D9;
    border: 1.5px solid #D4C9F9;
}

.pf-icon--amber {
    background: #FFF8E6;
    color: #C07800;
    border: 1.5px solid #FFE49A;
}

.pf-icon--emerald {
    background: #EAFAF0;
    color: #1A8C4E;
    border: 1.5px solid #A3E8C0;
}

/* ── Step label ── */
.pf-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    display: block;
}

/* ── Step description ── */
.pf-desc {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
    display: block;
    max-width: 90px;
}

/* ── Responsive ── */
@media screen and (max-width: 1067px) {
    .pf-section { padding: 60px 30px; }

    .pf-flow { gap: 0; }

    .pf-icon {
        width: 52px;
        height: 52px;
    }

    .pf-icon svg {
        width: 22px;
        height: 22px;
    }

    .pf-arrow {
        font-size: 16px;
        margin-top: 22px;
        padding: 0 2px;
    }

    .pf-label  { font-size: 12px; }
    .pf-desc   { font-size: 11px; max-width: 70px; }
}

@media screen and (max-width: 768px) {
    .pf-section { padding: 50px 20px; }
    .pf-container { gap: 40px; }

    /* Wrap into 2 rows of ~4 */
    .pf-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 0;
    }

    .pf-arrow {
        display: none;
    }

    .pf-step {
        flex: 0 0 25%;
        padding: 0 8px;
    }

    .pf-icon {
        width: 56px;
        height: 56px;
    }
}

@media screen and (max-width: 480px) {
    .pf-step {
        flex: 0 0 33.33%;
    }

    .pf-label { font-size: 11px; }
    .pf-desc  { font-size: 10px; max-width: 80px; }
}
/* ============================================================
   LEGACY feat2- HEADER CLASSES (kept for backward compat)
   These were in the old file but not used in current HTML;
   keeping them so nothing breaks if referenced elsewhere.
   ============================================================ */

.feat2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.feat2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-accent);
    border: 1px solid var(--color-primary-light);
    padding: 6px 16px;
    border-radius: 100px;
}

.feat2-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.feat2-title-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 900px;
}

.feat2-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-dark);
    letter-spacing: -0.025em;
    margin: 0;
}

.feat2-title-accent { color: var(--color-primary); }

.feat2-subtitle {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
}

.feat2-header::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-grey-light);
    margin-top: 12px;
}

.feat2-subheader {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-bg-light);
}

.feat2-subheader-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feat2-subbadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    width: fit-content;
}

.feat2-subbadge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
    animation: feat2-pulse 2.2s ease-in-out infinite;
}

@keyframes feat2-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22); }
    50%       { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.06); }
}

.feat2-subtitle-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.feat2-subtitle-blue { color: var(--color-primary); }

.feat2-subheader-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
    padding-bottom: 6px;
}

@media screen and (max-width: 1067px) {
    .feat2-title-row {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        text-align: center;
    }

    .feat2-subheader {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .feat2-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .feat2-subtitle-title { font-size: clamp(1.3rem, 6vw, 1.7rem); }
}




/* ============================================================
   FEATURE DEEP-DIVE SECTION  —  fd- prefix
   ============================================================ */

.fd-section {
    width: 100%;
    background: var(--color-white);
    padding: 20px 100px 80px;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

.fd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Eyebrow ── */
.fd-eyebrow-wrap {
    text-align: center;
}

.fd-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--color-primary);
}

/* ── 3-col grid ── */
.fd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card outer ── */
.fd-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--color-accent);
    transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.fd-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* ── Card header ── */
.fd-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fd-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 0;
    /* override global h3 */
    font-size: 17px !important;
}

.fd-card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── White inner mockup area ── */
.fd-card-mockup {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 18px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-grey-light);
}


/* ══════════════════════════════════
   CARD 1 — CATALOG MOCKUP
══════════════════════════════════ */
.fd-catalog {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fd-catalog-collection {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
}

.fd-catalog-sub {
    font-size: 11.5px;
    color: var(--color-text-muted);
    margin: 0;
    margin-top: -8px;
}

.fd-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fd-catalog-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.fd-catalog-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
}

.fd-catalog-img--1 { background: linear-gradient(135deg, #F5E6D8, #E8C9A8); }
.fd-catalog-img--2 { background: linear-gradient(135deg, #D8E8F5, #A8C9E8); }
.fd-catalog-img--3 { background: linear-gradient(135deg, #E8F5D8, #C9E8A8); }

.fd-catalog-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.fd-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: 4px;
    transition: gap var(--transition-fast);
}

.fd-catalog-link:hover { gap: 8px; }


/* ══════════════════════════════════
   CARD 2 — CAMPAIGN MOCKUP
══════════════════════════════════ */
.fd-campaign {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fd-campaign-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
}

.fd-campaign-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.fd-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fd-stat-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
}

.fd-stat-item--blue .fd-stat-num {
    color: var(--color-primary);
}

.fd-stat-lbl {
    font-size: 10px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Bar chart */
.fd-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 90px;
    padding-top: 10px;
    border-bottom: 1px solid var(--color-grey-light);
}

.fd-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    flex: 1;
}

.fd-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transition: opacity var(--transition-fast);
}

.fd-bar--light { background: #BFD7F7; }
.fd-bar--dark  { background: var(--color-primary); }

.fd-bar-group:hover .fd-bar { opacity: 0.8; }


/* ══════════════════════════════════
   CARD 3 — CHAT MOCKUP
══════════════════════════════════ */
/* ============================================================
   FEATURES SECTION  —  fd2- prefix
   Add this block to main.css
   ============================================================ */
/* ============================================================
   FEATURES SECTION  —  fd2- prefix
   Paste into main.css
   ============================================================ */

.fd2-section {
  width: 100%;
  background: var(--color-bg-light);
   padding: 70px 60px 60px;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

.fd2-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 32px;
}

.fd2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1130px;
  margin: 0 auto;
}

/* ── Card shell ── */
.fd2-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid #E4EDFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.fd2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 54, 121, 0.10);
}

/* ── Card header ── */
.fd2-card-head {
  padding: 24px 24px 16px;
}

.fd2-card-title {
  font-size: 20px !important;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 8px;
  line-height: 1.2;
}

.fd2-card-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Card body ── */
.fd2-card-body {
  padding: 0 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Inner white box ── */
.fd2-inner-box {
  background: var(--color-white);
  border: 1px solid #E4EDFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


/* ════════════════════════
   CARD 1 — CATALOG
════════════════════════ */

.fd2-catalog-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 2px;
}

.fd2-catalog-sub {
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin: 0 0 14px;
}

.fd2-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.fd2-catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.fd2-catalog-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  overflow: hidden;
  object-fit: cover;
  display: block;
}

.fd2-catalog-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.fd2-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.fd2-catalog-link:hover { gap: 8px; }

.fd2-catalog-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


/* ════════════════════════
   CARD 2 — CAMPAIGNS
════════════════════════ */

.fd2-camp-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 12px;
}

.fd2-camp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #E4EDFF;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.fd2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-right: 1px solid #E4EDFF;
}

.fd2-stat:last-child { border-right: none; }

.fd2-stat-lbl {
  font-size: 9.5px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.fd2-stat-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}

.fd2-stat-num--blue { color: var(--color-primary); }

/* ── Bar chart ── */
.fd2-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
  border-bottom: 1.5px solid var(--color-grey-light);
  margin-top: auto;
  padding-top: 8px;
}

.fd2-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex: 1;
}

.fd2-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: opacity var(--transition-fast);
}

.fd2-bar--light { background: var(--color-primary-light); }
.fd2-bar--dark  { background: var(--color-primary); }
.fd2-bar-group:hover .fd2-bar { opacity: 0.75; }

/* Bar heights — replaces all inline style="height:Xpx" */
.fd2-bar--h28 { height: 28px; }
.fd2-bar--h30 { height: 30px; }
.fd2-bar--h32 { height: 32px; }
.fd2-bar--h38 { height: 38px; }
.fd2-bar--h42 { height: 42px; }
.fd2-bar--h44 { height: 44px; }
.fd2-bar--h46 { height: 46px; }
.fd2-bar--h48 { height: 48px; }
.fd2-bar--h52 { height: 52px; }
.fd2-bar--h56 { height: 56px; }
.fd2-bar--h58 { height: 58px; }
.fd2-bar--h62 { height: 62px; }
.fd2-bar--h66 { height: 66px; }
.fd2-bar--h72 { height: 72px; }
.fd2-bar--h76 { height: 76px; }


/* ════════════════════════
   CARD 3 — CHAT
════════════════════════ */

.fd2-inner-box--chat {
  gap: 10px;
  padding: 14px;
}

.fd2-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fd2-chat-row--right { justify-content: flex-end; }
.fd2-chat-row--left  { justify-content: flex-start; }

.fd2-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fd2-avatar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.fd2-avatar--blue  { background: #EBF4FF; color: var(--color-primary); border: 1px solid var(--color-primary-light); }
.fd2-avatar--green { background: #E6F7EF; color: #1A7A4A;              border: 1px solid #B3E8CF; }

.fd2-bubble {
  padding: 8px 12px;
  max-width: 75%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fd2-bubble--user {
  background: var(--color-bg-light);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md) var(--radius-md) 0 var(--radius-md);
}

.fd2-bubble--bot {
  background: var(--color-white);
  border: 1px solid var(--color-grey-light);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.fd2-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.fd2-tag--green { color: #1A7A4A; }

.fd2-bubble p {
  font-size: 12px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.45;
}


/* ════════════════════════
   RESPONSIVE
════════════════════════ */

@media screen and (max-width: 1067px) {
  .fd2-section { padding: 50px 40px 60px; }

  .fd2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fd2-card {
    flex-direction: row;
    align-items: stretch;
  }

  .fd2-card-head {
    flex: 0 0 36%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #EEF3FF;
  }

  .fd2-card-body { flex: 1; }

  .fd2-camp-stats { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
  .fd2-section { padding: 44px 20px 54px; }

  .fd2-card { flex-direction: column; }

  .fd2-card-head {
    flex: unset;
    border-right: none;
  }
}

@media screen and (max-width: 480px) {
  .fd2-catalog-grid { gap: 6px; }
  .fd2-stat-num     { font-size: 12px; }
}


/* ════════════════════════════════════
   CARD 2 — CAMPAIGNS
════════════════════════════════════ */

.fd2-camp-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 12px;
}

.fd2-camp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  background: var(--color-bg-light);
  border-radius: 10px;
  padding: 10px 8px;
}

.fd2-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.fd2-stat-num {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}

.fd2-stat-num--blue { color: var(--color-primary); }

.fd2-stat-lbl {
  font-size: 9.5px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.fd2-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  border-bottom: 1.5px solid var(--color-grey-light);
  margin-top: auto;
}

.fd2-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex: 1;
}

.fd2-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: opacity var(--transition-fast);
}

.fd2-bar--light { background: var(--color-primary-light); }
.fd2-bar--dark  { background: var(--color-primary); }

.fd2-bar-group:hover .fd2-bar { opacity: 0.75; }


/* ════════════════════════════════════
   CARD 3 — CHAT
════════════════════════════════════ */

.fd2-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fd2-chat-arrow {
  font-size: 13px;
  color: var(--color-grey);
  text-align: center;
  padding-left: 36px;
  line-height: 1;
}

.fd2-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fd2-chat-row--right { justify-content: flex-end; }
.fd2-chat-row--left  { justify-content: flex-start; }

.fd2-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fd2-avatar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.fd2-avatar--blue  { background: #EBF4FF; color: var(--color-primary); border: 1px solid var(--color-primary-light); }
.fd2-avatar--green { background: #E6F7EF; color: #1A7A4A;              border: 1px solid #B3E8CF; }

.fd2-bubble {
  border-radius: var(--radius-md);
  padding: 8px 11px;
  max-width: 78%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fd2-bubble--user {
  background: var(--color-bg-light);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md) var(--radius-md) 0 var(--radius-md);
}

.fd2-bubble--bot {
  background: var(--color-white);
  border: 1px solid var(--color-grey-light);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.fd2-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.fd2-tag--green { color: #1A7A4A; }

.fd2-bubble p {
  font-size: 11.5px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.45;
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */

@media screen and (max-width: 1067px) {
  .fd2-section { padding: 50px 40px 70px; }

  .fd2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fd2-card {
    flex-direction: row;
    align-items: stretch;
  }

  .fd2-card-top {
    flex: 0 0 38%;
    border-bottom: none;
    border-right: 1px solid #EEF3FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fd2-card-mockup { flex: 1; }
}

@media screen and (max-width: 768px) {
  .fd2-section { padding: 44px 20px 60px; }

  .fd2-card { flex-direction: column; }

  .fd2-card-top {
    flex: unset;
    border-right: none;
    border-bottom: 1px solid #EEF3FF;
  }

  .fd2-camp-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .fd2-catalog-grid { gap: 6px; }
  .fd2-stat-num     { font-size: 11.5px; }
}


/* ============================================================
   STATS BAR SECTION  —  sb- prefix
   Paste this block into main.css
   ============================================================ */

/* ============================================================
   STATS BAR SECTION  —  sb- prefix
   Paste this block into main.css
   ============================================================ */

.sb-section {
  width: 100%;
  padding: 70px 60px 60px;
  box-sizing: border-box;
  font-family: var(--font-primary);
  
}

.sb-container {
  max-width: 1130px;
  margin: 10auto;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Single stat item ── */
.sb-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  padding: 0 32px;
}

.sb-item:first-child { padding-left: 0; }
.sb-item:last-child  { padding-right: 0; }

/* ── White circle icon ── */
.sb-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sb-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-white);
  flex-shrink: 0;
}

/* ── Text block ── */
.sb-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sb-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sb-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

/* ── Vertical divider ── */
.sb-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */

@media screen and (max-width: 1067px) {
  .sb-section    { padding: 0 40px 50px; }
  .sb-container  { padding: 28px 32px; }
  .sb-item       { padding: 0 20px; gap: 14px; }
  .sb-number     { font-size: 26px; }
  .sb-label      { font-size: 12px; }
  .sb-icon       { width: 44px; height: 44px; }
  .sb-icon svg   { width: 18px; height: 18px; }
  .sb-divider    { height: 44px; }
}

@media screen and (max-width: 768px) {
  .sb-section   { padding: 0 20px 44px; }
  .sb-container { flex-wrap: wrap; padding: 24px 20px; gap: 0; }

  .sb-item {
    flex: 0 0 50%;
    padding: 16px 20px;
    box-sizing: border-box;
  }

  .sb-item:first-child { padding-left: 20px; }
  .sb-item:last-child  { padding-right: 20px; }

  .sb-divider { display: none; }

  .sb-item:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media screen and (max-width: 480px) {
  .sb-item       { flex: 0 0 100%; }
  .sb-item + .sb-item { border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .sb-number     { font-size: 28px; }
}


/* ============================================================
   INTEGRATIONS SECTION  —  ig- prefix
   Paste into main.css
   ============================================================ */

.ig-section {
  width: 100%;
  background: var(--color-white);
  padding: 70px 60px 60px;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

.ig-container {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── Eyebrow ── */
.ig-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

/* ── Logos row ── */
.ig-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

/* ── Individual card ── */
.ig-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  cursor: default;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
  white-space: nowrap;
}

.ig-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 16px rgba(5, 54, 121, 0.10);
  transform: translateY(-2px);
}

/* ── Logo icon wrapper ── */
.ig-logo {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* WooCommerce custom badge */
.ig-logo--woo {
  background: #7F54B3;
  border-radius: 5px;
  width: 32px;
  height: 20px;
}

.ig-woo-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── Integration name ── */
.ig-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1;
}

/* ── Footer note ── */
.ig-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0;
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */

@media screen and (max-width: 1067px) {
  .ig-section { padding: 44px 40px 54px; }

  .ig-row { gap: 10px; }

  .ig-card { padding: 10px 16px; gap: 8px; }

  .ig-name { font-size: 13px; }
}

@media screen and (max-width: 768px) {
  .ig-section { padding: 40px 20px 48px; }

  .ig-row { gap: 8px; }

  .ig-card { padding: 9px 14px; }

  .ig-name { font-size: 12.5px; }
}

@media screen and (max-width: 480px) {
  .ig-row { gap: 8px; }

  .ig-card {
    padding: 8px 12px;
    gap: 7px;
  }

  .ig-name { font-size: 12px; }

  .ig-logo svg { width: 20px; height: 20px; }
}



/* ==========================================================
   TESTIMONIAL SECTION
   ========================================================== */

.testimonial-section {
    padding: 80px 60px;
    background: var(--color-white);
}

.testimonial-container {
    max-width: 1130px;
    margin: 0 auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header h5 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.testimonial-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.testimonial-card {
    flex: 1;
    background: var(--color-white);
    border: 1px solid #eef2f7;
    border-radius: 20px;
    padding: 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 32px;
    color: #d9e8ff;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

.testimonial-info span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.testimonial-user img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6d6d6;
    transition: var(--transition-base);
}

.testimonial-dots .dot.active {
    background: var(--color-primary);
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 992px) {
    .testimonial-wrapper {
        flex-direction: column;
    }

    .testimonial-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-user img {
        width: 80px;
        height: 80px;
    }
}


/* ==========================================================
   CTA SECTION
   ========================================================== */

.cta-section {
    padding: 80px 60px;
    background: var(--color-white);
    margin-top: -100px;
}

.cta-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;

    background: #F8FAFF;
    border: 1px solid #EEF2F7;
    border-radius: 28px;

    padding: 50px 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    overflow: hidden;
}

/* ==================================
   LEFT CONTENT
================================== */

.cta-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--color-text-muted);
}

/* ==================================
   BUTTON AREA
================================== */

.cta-action {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 320px;
    height: 70px;

    background: linear-gradient(
        90deg,
        var(--color-primary),
        #1D72FF
    );

    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;

    border-radius: 14px;

    transition: var(--transition-base);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn span {
    font-size: 22px;
}

.cta-features {
    margin-top: 18px;

    display: flex;
    justify-content: center;
    gap: 12px;

    flex-wrap: wrap;

    font-size: 14px;
    color: var(--color-text-muted);
}

/* ==================================
   DECORATIVE SHAPES
================================== */

.cta-pattern-left,
.cta-pattern-right {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-pattern-left {
    width: 220px;
    height: 220px;

    left: -120px;
    top: -40px;

    background:
        radial-gradient(circle, #DCE8FF 2px, transparent 2px);

    background-size: 10px 10px;
    opacity: 0.8;
}

.cta-pattern-right {
    width: 260px;
    height: 260px;

    right: -140px;
    bottom: -120px;

    background:
        radial-gradient(circle, #DCE8FF 2px, transparent 2px);

    background-size: 10px 10px;
    opacity: 0.8;
}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 1024px) {

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-btn {
        min-width: 280px;
    }
}

@media (max-width: 768px) {

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        min-width: auto;
        height: 60px;
        font-size: 16px;
    }

    .cta-features {
        gap: 8px;
        font-size: 13px;
    }
}




