/* ====== CSS RESET & TOKENS ====== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --fp-green-50: #eaf5e4;
    --fp-green-100: #c5e5b3;
    --fp-green-400: #4c9e2f;
    --fp-green-600: #2f7018;
    --fp-green-800: #1a4109;
    --fp-teal-50: #e1f5ee;
    --fp-teal-400: #1d9e75;
    --fp-teal-600: #0f6e56;
    --fp-amber-50: #faeeda;
    --fp-amber-400: #ba7517;
    --fp-gray-50: #f7f8f5;
    --fp-gray-100: #edeee8;
    --fp-gray-300: #c4c6bc;
    --fp-gray-500: #7a7d72;
    --fp-gray-800: #2a2e24;
    --fp-white: #ffffff;
    --fp-brand-green: #16834a;
    --fp-brand-green-dark: #103b28;
    --fp-brand-orange: #f15a24;
    --fp-radius-sm: 6px;
    --fp-radius-md: 10px;
    --fp-radius-lg: 16px;
    --fp-radius-xl: 24px;
    --fp-shadow-card: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .05);
    --fp-transition: 0.22s ease;
}

/* ====== LAYOUT ====== */
.fp-section {
    font-family: 'Quicksand', sans-serif;
    color: var(--fp-gray-800);
    background: var(--fp-gray-50);
    line-height: 1.65;
}

.fp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== HERO BAND ====== */
.fp-hero {
    
   position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #f5f7f2;
    }

.fp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 20%, rgba(255, 255, 255, .06) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 10% 90%, rgba(255, 255, 255, .04) 0%, transparent 60%);
}

.fp-hero__inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    transform: translateY(-100px);
}

.fp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(0, 0, 0, .9);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.fp-hero__title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    color: #00683b;
}

.fp-hero__title sup {
    font-size: .55em;
    vertical-align: super;
}

.fp-hero__subtitle {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 580px;
    font-weight: 600;
    color: #333;
}

.fp-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
}

.fp-stat-pill {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--fp-radius-md);
    padding: 14px 20px;
    text-align: center;
}

.fp-stat-pill__num {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.03em;
}

.fp-stat-pill__label {
    display: block;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .75;
    margin-top: 4px;
}

.fp-hero__logo {
    margin-bottom: 20px;
    display: block;
}

.fp-hero__logo img {
    max-width: 220px;
    height: auto;
    display: block;
}


@media (max-width: 767px) {
  .fp-hero {
    background-image: url("../assets/images/bg/fiber-prime-mobile.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}


/* ====== SECTION LABELS ====== */
.fp-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fp-green-600);
    margin-bottom: 12px;
}

.fp-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--fp-gray-800);
    margin-bottom: 14px;
}

.fp-body {
    font-size: 1rem;
    color: var(--fp-gray-500);
    line-height: 1.75;
}

/* ====== FULL IMAGE HERO MODE ====== */
.fp-hero-img-mode {
    background: #fff6ed !important;
    padding: 0 !important;
}

.fp-hero-img-mode::before {
    display: none !important;
}

  .fp-hero-full-img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center;
    }

@media (max-width: 767px) {
    .fp-hero-img-mode {
        margin-top: 95px !important;
    }
}

/* ====== BENEFITS SECTION ====== */
.fp-benefits {
    background: #fff;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
    margin-top: -110px;
}

.fp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.fp-benefit-card {
    background: #fff;
    padding: 70px 20px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.fp-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -45px;
    border: 6px solid #fff;
    z-index: 2;
}

.fp-icon-circle img {
border-radius: 50%;
    width: 65px;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .35));
}

.icon-lime { background-color: #f4980a; }
.icon-blue { background-color: #0077a1; }
.icon-coral { background-color: #d65a4a; }
.icon-teal { background-color: #0099a8; }
.icon-purple { background-color: #7b2c79; }

.fp-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.3;
}

.fp-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .fp-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 20px;
    }

    .fp-benefits {
        margin-top: -60px;
    }

    .fp-benefit-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 10px);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .fp-benefits__grid {
        grid-template-columns: 1fr;
        gap: 80px 0;
    }

    .fp-benefit-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

 @media (max-width: 767px) {
      .fp-hero {
        min-height: clamp(420px, 125vw, 720px);
      }

      .fp-hero__picture,
      .fp-hero-full-img {
        width: 100%;
        height: 100%;
      }

      .fp-hero-full-img {
        position: absolute;
        inset: 0;
        object-fit: cover;
        object-position: center top;
      }
    }

/* ====== CERTIFICATIONS (image left / badges grid right) ====== */
.zen-cert-section {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.zen-cert-title {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -.02em;
    color: var(--fp-gray-800);
    margin-bottom: 35px;
}

.zen-cert-flex-wrap {
    display: flex !important;
    align-items: stretch;
    gap: 40px;
}

.zen-cert-flex-wrap .zen-cert-left {
    flex: 1 1 42%;
    min-width: 0;
    display: flex;
}

.zen-cert-left img,
.zen-cert-left svg {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--fp-radius-lg);
    display: block;
    background: #eef2ef;
}

.zen-cert-flex-wrap .zen-cert-right {
   
    min-width: 0;
}

.zen-cert-right .zen-cert-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px;
}

.zen-cert-card {
    text-align: center;
    cursor: pointer;
}

.zen-cert-image {
    position: relative;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    border-radius: var(--fp-radius-md);
    overflow: hidden;
}

.zen-cert-image img {
    border-radius: 50%;
    max-width: 100%;
    max-height: 95px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.zen-cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
    color: #fff;
    font-weight: 600;
}

.zen-cert-overlay span {
    font-size: 12px;
}

.zen-cert-card:hover .zen-cert-overlay {
    opacity: 1;
}

.zen-cert-card:hover {
    transform: translateY(-3px);
    transition: transform .25s ease;
}

.zen-cert-name {
    font-size: 13.5px;
    line-height: 1.4;
    margin-top: 10px;
    font-weight: 600;
    color: var(--fp-brand-green-dark);
}

@media (max-width: 991px) {
    .zen-cert-flex-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .zen-cert-left,
    .zen-cert-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .zen-cert-left img,
    .zen-cert-left svg {
        min-height: 220px;
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .zen-cert-section {
        padding: 45px 12px;
        overflow: hidden;
    }

    .zen-cert-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .zen-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .zen-cert-image {
        height: 95px;
    }

    .zen-cert-image img {
        max-width: 70px;
        max-height: 60px;
    }

    .zen-cert-name {
        font-size: 12px;
        margin-top: 8px;
    }

    .zen-cert-overlay span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .zen-cert-grid {
        gap: 12px;
    }

    .zen-cert-image {
        height: 85px;
    }

    .zen-cert-image img {
        max-width: 58px;
        max-height: 50px;
    }

    .zen-cert-name {
        font-size: 11.5px;
    }
}

/* Modal Popup Styles (shared) */
.zen-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
}

.zen-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
}

.zen-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

#zenCaption {
    text-align: center;
    color: #ccc;
    padding: 20px;
    font-size: 1.2rem;
}

/* ====== GLP-1 SPOTLIGHT ====== */
.fp-glp1 {
    background: var(--fp-green-800);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.fp-glp1::after {
    content: 'GLP-1';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Quicksand', sans-serif;
    font-size: 200px;
    line-height: 1;
    color: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.fp-glp1__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fp-glp1__label { color: #9fd6c0; }
.fp-glp1__label::before { background: #9fd6c0; }

.fp-glp1__heading {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    color: #fff;
}

.fp-glp1__body {
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
}

.fp-glp1__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fp-tag {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .88);
    font-size: .8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
}

.fp-glp1__callout {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--fp-radius-xl);
    padding: 36px 32px;
}

.fp-glp1__callout-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -.04em;
    color: #9fd6c0;
}

.fp-glp1__callout-text {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    margin-top: 6px;
    line-height: 1.6;
}

/* ====== COMPARISON TABLE ====== */
.fp-compare {
    padding: 80px 0;
    background: var(--fp-white);
}

.fp-compare__header {
    max-width: 560px;
    margin-bottom: 48px;
}

.fp-compare__table-wrap {
    overflow-x: auto;
    border-radius: var(--fp-radius-lg);
    border: 1px solid var(--fp-gray-100);
    box-shadow: var(--fp-shadow-card);
}

.fp-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 560px;
}

.fp-compare__table thead tr { background: var(--fp-gray-50); }

.fp-compare__table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--fp-gray-500);
    border-bottom: 1px solid var(--fp-gray-100);
}

.fp-compare__table th.fp-col-fp {
    color: var(--fp-green-600);
    background: var(--fp-green-50);
}

.fp-compare__table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--fp-gray-100);
    color: var(--fp-gray-800);
    vertical-align: top;
}

.fp-compare__table tbody tr:last-child td { border-bottom: none; }
.fp-compare__table tbody tr:hover td { background: var(--fp-gray-50); }

.fp-compare__table td.fp-col-param {
    font-weight: 600;
    color: var(--fp-gray-800);
    font-size: .875rem;
}

.fp-compare__table td.fp-col-fp {
    background: #f0faf5;
    color: var(--fp-green-800);
    font-weight: 500;
}

.fp-compare__table td.fp-col-chicory { color: var(--fp-gray-500); }

.fp-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fp-check::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--fp-green-400);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: cover;
    flex-shrink: 0;
}

/* ====== APPLICATIONS (single merged design) ====== */
.fp-applications {
    padding: 80px 0;
    background: var(--fp-gray-50);
}

.fp-applications__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
}

.fp-applications__label {
    display: inline-block;
    justify-content: center;
    background: #fff3eb;
    color: var(--fp-brand-orange);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: .4px;
}

.fp-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fp-app-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #e6eee8;
    box-shadow: 0 8px 26px rgba(17, 59, 40, .06);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--fp-transition), transform var(--fp-transition), border-color var(--fp-transition);
}

.fp-app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--fp-brand-green), var(--fp-brand-orange));
    opacity: 0;
    transition: opacity var(--fp-transition);
}

.fp-app-card:hover::before { opacity: 1; }

.fp-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(17, 59, 40, .12);
    border-color: rgba(22, 131, 74, .25);
}

.fp-app-card:nth-child(1) { background: linear-gradient(135deg, #ffffff, #f5fbf6); }
.fp-app-card:nth-child(2) { background: linear-gradient(135deg, #ffffff, #fff8f3); }
.fp-app-card:nth-child(3) { background: linear-gradient(135deg, #ffffff, #f7fbff); }
.fp-app-card:nth-child(4) { background: linear-gradient(135deg, #ffffff, #fffaf5); }

.fp-app-card__icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #edf8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcefe2;
}

.fp-app-card__icon-wrap img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.fp-app-card__content { flex: 1; }

.fp-app-card__title {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
    color: #10251b;
    margin-bottom: 7px;
}

.fp-app-card__body {
    font-size: 13.8px;
    line-height: 1.55;
    color: #64716b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-app-card__bullets {
    margin-top: 10px;
    list-style: none;
    display: grid;
    gap: 5px;
    max-height: 82px;
    overflow: hidden;
}

.fp-app-card__bullets li {
    font-size: 12.8px;
    line-height: 1.45;
    color: #66736d;
    padding-left: 17px;
    position: relative;
}

.fp-app-card__bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--fp-brand-green);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

@media (max-width: 991px) {
    .fp-apps-grid { grid-template-columns: 1fr; }
    .fp-heading { font-size: 28px; }
}

@media (max-width: 575px) {
    .fp-applications__header { margin-bottom: 24px; }

    .fp-app-card {
        padding: 18px 16px;
        border-radius: 16px;
        gap: 13px;
    }

    .fp-app-card__icon-wrap {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .fp-app-card__icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .fp-app-card__title { font-size: 16px; }
    .fp-app-card__body { font-size: 13px; }
    .fp-app-card__bullets li { font-size: 12.5px; }
}

/* ====== FUNCTIONALITY ====== */
.fp-functionality {
    padding: 80px 0;
    background: #f7f8f5;
}

.fp-func__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.fp-func__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.fp-func__item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0 16px;
}

.fp-func__item-num {
    width: 36px;
    height: 36px;
    background: var(--fp-green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    color: var(--fp-green-600);
    flex-shrink: 0;
    grid-row: 1 / 3;
    align-self: start;
    margin-top: 2px;
}

.fp-func__item-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--fp-gray-800);
    margin-bottom: 4px;
}

.fp-func__item-desc {
    font-size: .945rem;
    color: var(--fp-gray-500);
    line-height: 1.65;
    grid-column: 2;
}

.fp-func__visual {
    background: var(--fp-white);
    border: 1px solid var(--fp-gray-100);
    border-radius: var(--fp-radius-xl);
    padding: 36px 32px;
    position: sticky;
    top: 24px;
}

.fp-func__visual-title {
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--fp-green-600);
    margin-bottom: 24px;
}

.fp-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.fp-bar-row__label {
    font-size: .8rem;
    color: #4c9e2f;
    font-weight: 600;
    width: 140px;
    flex-shrink: 0;
}

.fp-bar-row__track {
    flex: 1;
    height: 8px;
    background: var(--fp-gray-100);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.fp-bar-row__fill {
    height: 100%;
    border-radius: 8px;
    background: var(--fp-green-400);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.fp-bar-row__fill--alt { background: var(--fp-gray-300); }

.fp-bar-row__val {
    font-size: .8rem;
    font-weight: 600;
    color: var(--fp-gray-800);
    width: 36px;
    text-align: right;
}

.fp-bar-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--fp-gray-100);
}

.fp-bar-legend__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: var(--fp-gray-500);
}

.fp-bar-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ====== CTA BAND ====== */
.fp-cta {
    background: url('../images/bg/cta-bg.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    border-top: 1px solid #c5e5b3;
    padding: 120px 0;
    width: 100%;
}

.fp-cta__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fp-cta__tagline {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 500;
    color: #fff;
    max-width: 650px;
    line-height: 1.3;
    text-align: left;
}

.fp-cta__tagline span {
    font-style: italic;
    color: #000000;
}

@media (max-width: 991px) {
    .fp-cta {
        background-position: 20% center;
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .fp-cta__inner { justify-content: center; }
    .fp-cta__tagline { text-align: center; max-width: 100%; }
}

/* ====== LOGO HIGHLIGHT ====== */
.highlight-logo img {
    position: relative;
    transition: all .3s ease-in-out;
}

.highlight-logo img:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, .6);
    transform: translateY(-3px);
}

/* ====== GLOBAL RESPONSIVE ====== */
@media (max-width: 900px) {
    .fp-hero__inner { grid-template-columns: 1fr; }

    .fp-hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fp-stat-pill {
        flex: 1;
        min-width: 120px;
    }

    .fp-glp1__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fp-glp1::after { display: none; }

    .fp-func__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fp-func__visual { position: static; }
}

@media (max-width: 640px) {
    .fp-hero { padding: 120px 10px 6px; }

    .fp-benefits,
    .fp-compare,
    .fp-applications,
    .fp-functionality,
    .fp-glp1,
    .fp-cta,
    .zen-cert-section {
        padding: 56px 0;
    }

    .fp-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-bar-row__label {
        width: 110px;
        font-size: .75rem;
    }
}

@media (max-width: 420px) {
    .fp-container { padding: 0 16px; }

    .fp-compare__table th,
    .fp-compare__table td {
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {
  .fp-container {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .fp-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .fp-benefit-card {
    width: 100%;
    min-height: auto;
    padding: 22px 18px;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
  }

  .fp-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
  }

  .fp-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fp-card-title {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.3;
  }

  .fp-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }
}


  .zen-cert-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zen-cert-left {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1b2603;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 20px 50px -20px rgba(31, 42, 32, 0.15);
}

.fp-glp1__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ee7d34;
    margin-bottom: 16px;
}

.fp-glp1__heading {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.fp-glp1__body {
    font-size: 16px;
    line-height: 1.75;
    color: #d4d5d4
    margin: 0 0 28px;
}

.fp-glp1__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fp-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #2f5233;
    background: #eef3ea;
    border: 1px solid #d6e4d0;
    padding: 8px 16px;
    border-radius: 20px;
}
@media (max-width: 767px) {
  .zen-cert-flex-wrap {
    display: block;
    width: 100%;
  }

  .zen-cert-left {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }

  .fp-glp1__heading {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fp-glp1__body {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .fp-glp1__tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .fp-glp1__tags .fp-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 10px 8px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .fp-glp1__tags {
    grid-template-columns: 1fr;
  }
}