.pricing-bg {
    width: 100%;
    min-height: 1440px;
    height: auto;
    background: linear-gradient(to bottom, #4D6AA5 0%, #4D6AA5 2%, #FFE6EB 34%, #FFE6EB 38%, #FFFFFF 68%, #FFFFFF 100%);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    display: block;
    gap: 40px;
    padding-bottom: 150px;
}
@media (max-width: 695px) {
    .container {
        max-width: 100%;
        padding: 150px 0px 0px;
    }
}

.feature-item .feature-icon {
    width: 20px;
    height: 20px;
    color: #1b1b1b;
}

.premium-card .feature-icon {
    color: #fff;
}

.title-white{
    padding:10px !important;
    line-height: 1.1;
}


/* =========================================================
   PRICING WRAPPER + PLAN COLUMNS
   ========================================================= */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    filter: drop-shadow(0px 2px 6px rgba(223, 223, 223, 0.7));
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    background-color: #fff;
    padding-top: 28px;
}

.pricing-plan {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    width: 300px;
    padding: 8px;
    background: #fff;
    border-right: 1px solid #dfdfdf;
    box-sizing: border-box;
}

.pricing-plan:first-child {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.last-plan {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    border-right: none !important;
}

/* =========================================================
   BILLING FILTER TOGGLE
   ========================================================= */
.filter-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    padding-bottom: 40px;
    padding-top: 10px;
}

.filter-toggle-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 345px;
    padding: 2px;
    border-radius: 60px;
    background: #fff;
    position: relative;
    margin: 0 auto;
}

@media (max-width: 496px) {
    .filter-toggle-container {
        width: 100%;
    }
}

.filter-option {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: 40px;
    position: relative;
    gap: 10px;
    padding: 4px 16px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-option-active {
    background: #f48ac9;
    box-shadow: 58px 26px 68px 0 rgba(35, 44, 93, 0.06);
}

.filter-option-text {
    flex: 0 0 auto;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

.filter-option-active .filter-option-text {
    font-weight: 500;
    color: #fff;
}

.filter-option:not(.filter-option-active) .filter-option-text {
    color: #717171;
}

/* =========================================================
   PLAN CARD + PRICES + CTA
   ========================================================= */
@keyframes priceSwap {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-pricing.price-swap {
    animation: priceSwap 350ms ease;
}

.plan-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 235px;
    padding: 5px;
    border-radius: 24px;
    background: #f6f6f6;
    position: relative;
    min-height: 205px;
}

.gap-card .plan-card{
    gap:20px;
    padding-bottom: 10px;
}

.plan-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 4px;
}

.plan-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #1b1b1b;
    margin: 0;
}

.plan-description {
    width: 204px;
    font-size: 14px;
    text-align: center;
    color: #717171;
    margin: 0;
    line-height: 1.4;
}

.plan-pricing {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.price-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.original-price {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #a0a0a0;
    margin: 0;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #1b1b1b;
    margin: 0;
}

.billing-info {
    font-size: 14px;
    text-align: left;
    color: #717171;
    margin: 0;
}

/* Savings pill (annual/monthly) */
.save-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #e6ffe4;
    color: rgba(2, 122, 72, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding: 0px 5px 0px 5px;
}

/* Bottom matrix only: hide the save-badge on Monthly, show on Annual */
#all-features.is-monthly .save-badge {
    display: none !important;
}

#all-features.is-annual .save-badge {
    display: inline-flex;
}
.is-annual{
    padding-top: 80px;
}
/* Space it within the plan card */
.plan-card .save-badge {
    margin-top: 4px;
}

/* Hide badge if no text (useful when monthly shows no savings) */
.save-badge:empty {
    display: none;
}

/* Optional: if you want it hidden on monthly and shown on annual via CSS only */
.is-monthly .save-badge {
    display: none;
}

.is-annual .save-badge {
    display: inline-flex;
}

.plan-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 11px 24px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #dfdfdf;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.plan-button:hover {
    background: #f0f0f0;
}

.button-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #1b1b1b;
    margin: 0;
}

/* =========================================================
   FEATURES LIST (INSIDE EACH PLAN)
   ========================================================= */
.pricing-features {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    padding: 24px 8px;
    box-sizing: border-box;
    border-radius: 35px;
    margin-top: 7px;
}

.feature-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-bottom: 5px;
    height: 25px;
}

.feature-item .feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.feature-text {
    font-size: 14px;
    text-align: center;
    color: #1b1b1b;
    margin: 0;
    line-height: 1.4;
}

.divider {
    width: 100%;
    height: 1px;
}

.features-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
}

.features-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 20px;
    width: 100%;
}

.features-title {
    font-size: 15px;
    font-weight: 550;
    text-align: left;
    color: #a0a0a0;
    margin: 0;
}

/* =========================================================
   PREMIUM MODIFIERS
   ========================================================= */
.premium-card {
    background: linear-gradient(to right, #f28ccb 2.38%, #c7c0ed 95.63%) !important;
}

.premium-title,
.premium-description,
.premium-billing {
    color: #fff !important;
}

.icon-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 190px;
    height: 40px;
    padding: 5px 12px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(255, 152, 172, 0.1);
    position: absolute;
    top: -32px;
}

.icon-badge-svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    position: relative;
}

.icon-badge-text {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #1b1b1b;
}


.premium-card .icon-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    /* thickness of the ring */
    padding: 1px;

    /* the gradient ring */
    background: linear-gradient(to right, #f28ccb 2.38%, #c7c0ed 95.63%);

    /* punch out the middle so only the ring shows */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.premium-original {
    color: rgba(255, 255, 255, 0.6) !important;
}

.premium-discounted {
    color: #fff !important;
}

.premium-button {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid #fff !important;
    backdrop-filter: blur(20px);
}

.premium-button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.premium-button-text {
    color: #fff !important;
}

/* =========================================================
   "VIEW ALL FEATURES" TRIGGER
   ========================================================= */
.view-features {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 12px;
    padding: 8px;
    cursor: pointer;
}

.view-features-text {
    font-size: 16px;
    font-weight: 500;
    color: #1b1b1b;
}

.view-features-icon {
    width: 24px;
    height: 24px;
}

/* Expanded features mount + state */
.features-mount {
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
    width: 100%;
    position: relative;
    clear: both;
}

.pricing-container.is-expanded .plan-features {
    display: none !important;
}

.pricing-container.is-expanded .features-mount {
    /* max-height set via JS */
}

/* =========================================================
   EXPANDED FEATURES GRID (pf)
   ========================================================= */
.pf {
    display: grid;
    grid-template-columns: 1fr 8px 1fr 8px 1fr;
    /* Core | gutter | Premium | gutter | Enterprise */
    width: 100%;
}

.pf__row {
    display: contents;
}

.pf__cell {
    min-height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background: #f6f6f6;
}

.pf__gutter {
    background: #fff;
}

.pf--core {
    background: #f6f6f6;
}

.pf--prem {
    background: #fbf1f9;
}

.pf--ent {
    background: #f6f6f6;
}

.pf__text {
    margin: 0;
    font-size: 14px;
    color: #1b1b1b;
    text-align: center;
}

.pf__sub {
    margin: 6px 0 0 0;
    font-size: 14px;
    color: #535862;
    text-align: center;
}

.pf__cell--icon .pf__icon {
    width: 20px;
    height: 20px;
    display: block;
    color: #1b1b1b;
}

.pf__cell--muted .pf__icon {
    color: #a0a0a0;
}

.pf__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pf__row--header .pf__cell {
    height: 56px;
    min-height: 56px;
}

/* =========================================================
   LOGO STRIP + “EVERYTHING” CARDS
   ========================================================= */
.logo-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 36px;
    padding-top: 150px;
}
@media(max-width:550px){
    .logo-section{
        padding-bottom:50px;
    }
    
}

.logo-section-text {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.logo-section-span {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.logo-section-span.dark {
    color: #1a1c1f;
}

.logo-section-span.highlight {
    color: #de4066;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    position: relative;
    background: #fff;
}

.logo-image {
    object-fit: cover;
}

.logo-image-1 {
    width: 215.7px;
    height: 56px;
    object-fit: none;
}

.logo-image-2 {
    width: 236px;
    height: 25px;
    object-fit: none;
}

.logo-image-3 {
    width: 181.37px;
    height: 48px;
}

.logo-image-4 {
    width: 93.05px;
    height: 56px;
}

.logo-image-5 {
    width: 186px;
    height: 20px;
}

.everything-section {
    background-color: #F6F6F6;
}

.everything-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 210px;
    width: 280px;
    position: relative;
    padding: 15px;
    border-radius: 24px;
    background: #fff;
    margin: 10px;
}

    @media (max-width: 550px) {
        .everything-card{
            width: 100%;
        }
        .plan-card-mobile{
            display: none !important;
        }
        .faq{
            padding:20px;
        }
    }

/* =========================================================
   “FEATURES-ONLY” (5-UP) GRID <svg class="feature-icon" viewBox="0 0 20 20"><use href="#dash"/></svg> BOTTOM SECTION
   ========================================================= */
.pricing-container--x5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 24px;
}

/* Hide card header/pricing/cta in features-only mode */
.pricing-container--features-only .plan-card,
.pricing-container--features-only .plan-pricing,
.pricing-container--features-only .plan-button {
    display: none !important;
}

/* Tighten stacks so each column is only the features card */
.pricing-container--features-only .pricing-plan {
    margin: 0;
}

.pricing-container--features-only .plan-features {
    padding: 16px 0;
}

/* Make inline SVG dividers stretch */
.pricing-container--features-only .plan-features .divider {
    display: block;
    width: 100% !important;
    height: auto;
}

/* Hide empty icons in the left-side features panel if sprite is missing */
.pricing-container--features-only .pricing-plan:first-child .feature-icon use {
    display: none;
}

.pricing-container--features-only .pricing-plan:first-child .feature-icon {
    display: none;
}

/* Allow long feature text to wrap nicely */
.pricing-container--features-only .feature-item {
    align-items: center;
}

.pricing-container--features-only .feature-text {
    white-space: normal;
}
.price{

    font-size: 20px;
    font-weight: 500;
    text-align: left;
    max-width: 180px;
}
.card-description{
    font-size: 15px;
    padding-top: 10px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Expanded features: collapse gutters on medium screens */
@media (max-width: 1200px) {
    .pf {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pf__gutter {
        display: none;
    }
}

/* Plans grid: 2-up between 769–1024 */
@media (max-width: 1024px) {
    .pricing-plan {
        width: 50%;
    }

    .last-plan {
        border-top-right-radius: 0;
        border-bottom-left-radius: 24px;
    }

    .pricing-plan:nth-child(2) {
        border-top-right-radius: 24px;
    }

    .pricing-plan:first-child {
        border-bottom-left-radius: 0;
    }
}

/* Expanded features: single column on small screens */
@media (max-width: 640px) {
    .pf {
        grid-template-columns: 1fr;
    }
}

/* Stack plans vertically on tablets/phones */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-plan {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dfdfdf;
    }

    .pricing-plan:first-child {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        border-bottom-left-radius: 0;
        background: #f6f6f6;
    }

    .pricing-plan:nth-child(2) {
        border-top-right-radius: 0;
    }

    .last-plan {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        border-top-right-radius: 0;
    }

    .premium-card {
        background: linear-gradient(to bottom, #f28ccb, #c7c0ed) !important;
    }
}

/* Phone tweaks */
@media (max-width: 495px) {
    .pricing-plan {
        padding: 16px;
    }

    .plan-card {
        width: 100%;
        padding: 20px;
    }

    .pricing-features {
        padding: 20px 0;
    }

    .price-container {
        flex-direction: column;
        gap: 4px;
    }

    .original-price {
        font-size: 20px;
    }

    .discounted-price {
        font-size: 32px;
    }

    .premium-button {
        backdrop-filter: none;
    }

    .plan-button {
        padding: 10px 20px;
    }

    .feature-text {
        font-size: 13px;
    }

    .logo-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Features-only 5-up grid breakpoints */
@media (max-width: 1280px) {
    .pricing-container--x5 {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
    }
}

@media (max-width: 1024px) {
    .pricing-container--x5 {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-container--x5 {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 520px) {
    .pricing-container--x5 {
        grid-template-columns: 1fr;
    }
}

/* ===== Full-bleed helpers for the second section only ===== */

/* let the outer wrapper span the viewport width */
.container--fullbleed {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* the grid container in this section should not be capped */
.pricing-container--fullbleed {
    max-width: none !important;
    /* overrides .pricing-container max-width */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* optional: keep the nice rounded box while allowing full width */
.pricing-container--fullbleed {
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    filter: drop-shadow(0px 2px 6px rgba(223, 223, 223, 0.7));
    background: #fff;
}

/* ensure the 5-up grid uses the extra space */
#all-features-grid.pricing-container--x5 {
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    /* a touch wider min */
    gap: 24px;
}

/* keep all 5 columns in one row until ~1280–1360px (tweak as you like) */
@media (max-width: 1360px) {
    #all-features-grid.pricing-container--x5 {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
        /* folds to 4 */
    }
}

@media (max-width: 1120px) {
    #all-features-grid.pricing-container--x5 {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    #all-features-grid.pricing-container--x5 {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 520px) {
    #all-features-grid.pricing-container--x5 {
        grid-template-columns: 1fr;
    }
}

/* small fix: your “features-only” first column is a feature legend; let it breathe */
#all-features-grid.pricing-container--features-only .pricing-plan:first-child {
    min-width: 240px;
}

/* Let only the bottom matrix stretch wider */
#all-features .pricing-container.pricing-container--wide {
    max-width: 1720px;
    /* tweak to match your Figma; 1680–1800 works well */
}

/* Grid already set via .pricing-container--x5, but ensure cards fit neatly */
#all-features .pricing-container--x5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    /* left features + 4 plans */
    gap: 0px;
    border: none;
    filter: none;
}

/* In grid mode we don’t need the vertical borders between columns */
#all-features .pricing-plan {
    border-right: none;
}

/* Ensure the premium badge still positions correctly when card is full-width */
#all-features .premium-card .icon-badge {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive: collapse columns progressively */
@media (max-width: 1280px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
    }
}

@media (max-width: 1024px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 520px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: 1fr;
    }
}

/* 1) Let grid control the column width (remove the rigid 300px for the bottom section only) */
#all-features .pricing-plan {
    width: auto;
    /* override the global 300px */
    border-right: none;
    /* you already had this, keep it here for specificity */
}

/* Optional: give the left labels column a comfy minimum so text doesn’t wrap too early */
#all-features .pricing-plan--labels {
    min-width: 260px;
}

/* 2) Make the bottom toggle bar shrink nicely on small screens */
#all-features .filter-toggle-container {
    width: min(345px, 100%);
    background: #dedede;
}

/* 3) Keep 5 across on wide screens, then collapse progressively (you already set these,
      this just ensures the bottom section wins the cascade) */
#all-features .pricing-container--x5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    /* labels + 4 plans */
    gap: 0px;
}

@media (max-width: 1280px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
    }
}

@media (max-width: 1024px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 520px) {
    #all-features .pricing-container--x5 {
        grid-template-columns: 1fr;
    }
}

/* === Info tooltip (for the i-info icon) === */
.feature-item {
    position: relative;
}

/* opt-in: inline label + badge on one row */
.pricing-features-inline .feature-item.is-inline .feature-text-container{
  flex-direction:row;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;           /* wraps nicely on small screens */
}

/* info icon pinned to far right */
.pricing-features-inline .info-trigger{
  appearance:none; border:0; background:none; cursor:pointer;
  padding:2px; margin-left:auto;
  display:inline-flex; align-items:center;
  flex:0 0 auto; outline-offset:2px;
}

.pricing-features-inline .info-trigger .feature-icon{
  width:20px; height:20px;
  color:#A0A0A0;
  transition: color .2s ease, transform .2s ease;
}
.feature-badge{
  font-size:12px; line-height:1; font-weight:600;
  color:#7C3AED;
}
.pricing-features-inline .feature-text-container{
    align-items: baseline;
    flex-grow: 0;
}
.pricing-features-inline .feature-text-container .feature-text{
    text-align: left;
}

/* containing block for the tooltip */

.info-trigger {
    appearance: none;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 2px;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.info-trigger .feature-icon {
    color: #A0A0A0;
    transition: color .2s ease;
}

.info-trigger:hover .feature-icon,
.info-trigger:focus-visible .feature-icon {
    color: #1b1b1b;
}

/* the gray container */
.info-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    /* anchor to the icon; change to left via data-align if needed */
    margin-top: 8px;
    min-width: 260px;
    max-width: 360px;
    padding: 12px 14px;
    background: #2B2B2B;
    border: 1px solid #DFDFDF;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    ;

    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;

    z-index: 20;
    /* sit above cards */
    white-space: normal;
}

.info-tooltip::before {
    /* small arrow */
    content: "";
    position: absolute;
    right: 10px;
    top: -6px;
    width: 12px;
    height: 12px;
    background: #f6f6f6;
    border-left: 1px solid #DFDFDF;
    border-top: 1px solid #DFDFDF;
    transform: rotate(45deg);
}

/* show on hover/focus of the button */
.info-trigger:hover+.info-tooltip,
.info-trigger:focus-visible+.info-tooltip {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* optional: force left alignment if near the right edge */
.info-tooltip[data-align="left"] {
    left: 0;
    right: auto;
}

.info-tooltip[data-align="left"]::before {
    left: 10px;
    right: auto;
}

html {
    scroll-behavior: smooth;
}

#all-features {
    scroll-margin-top: 88px;
}

/* = your sticky header height */

.review-arrows {
    position: relative;
    z-index: 5;
}