.theme-standard {
    --success-color: #0065F2;
    --card-shade: linear-gradient(45deg, #FFFFFF, #FFFFFF, #FFFFFF, #FFFFFF, #0065f243);
    --hero-shad: #0065f250;
}

.theme-professional {
    --success-color: #8d00f2;
    --card-shade: linear-gradient(45deg, #FFFFFF, #FFFFFF, #FFFFFF, #FFFFFF, #8d00f23a);
    --hero-shad: #8d00f225;

}

.theme-freemium {
    --success-color: #319E3D;
    --card-shade: linear-gradient(45deg, #FFFFFF, #FFFFFF, #FFFFFF, #FFFFFF, #319e3e45);
    --hero-shad: #319e3e4b;

}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
}

/* =============================================================================
   3. HERO SECTION
   ============================================================================= */

.hero-section {
    display: flex;
    align-items: center;
    height: calc(100vh - 80px);
    position: relative;
    z-index: 99;
    /* Background: semi-transparent white wash over the hero image */
    background-color: transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6),
            rgba(101, 0, 242, 0.05)),
        url(../images/inner-pages/hero-background-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--space-32) 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 100%;
    /* height: calc(100vh - 120px); */
    margin: auto;


}

.hero-section::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 40%;
    z-index: -999;

    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: var(--hero-shad);
    filter: blur(50px);
}


/* --- Left copy column ---*/
.hero-left {
    max-width: 770px;
}

/* Small pill badge above the headline */
.top-badge {
    display: inline-block;
    margin-bottom:var(--p-size-16);
    padding: 4px 12px;
    border: 1px solid var(--success-color);
    border-radius: 50px;
    color: var(--success-color);
}

.hero-left h1 {
    font-family: var(--heading-bold-font-family);
    margin-bottom: 30px;
    font-size:clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -1px;
    color: var(--text-primary);
}

/* Coloured word(s) inside the headline */
.hero-left h1 span {
    color: var(--success-color);
}

.hero-left p {
    margin-bottom: 40px;
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    line-height: 30px;
    letter-spacing: 5%;
    color: black;
}


/* --- CTA button row ------------------------------------------------------- */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

/* Solid primary CTA */
.start-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    border-radius: 8px;
    background: var(--success-color);
    color: white;
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    line-height: 110%;
    letter-spacing: 5%;
    text-decoration: none;
}

/* Ghost / outlined secondary CTA */
.compare-btn {
    padding: 16px 24px;
    border: 2px solid var(--success-color);
    border-radius: var(--radius-8);
    color: var(--text-primary);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    line-height: 110%;
    letter-spacing: 5%;
    text-decoration: none;
}

/* Inline trust / feature bullets beneath the buttons */
.bottom-points {
    display: flex;
    gap: 9px;
    font-size: 14px;
}

.bottom-points span {
    display: flex;
    align-items: self-start;
    gap: 8px;
    color: var(--text-primary);
    text-align: left;

}

.bottom-points span::before{
    content: "";
    margin-top: 7px;
    width: 5px;
    height: 5px;
    background: #34333a;
    border-radius: 50%;
}


.bottom-points span:last-child{
    border-right: none;
}
/* --- Pricing card (right column) ---- */
.pricing-card {
    position: relative;
    max-width: 480px;
    padding: 24px;
    border: 2px solid white;
    border-radius: 30px;
    background: var(--card-shade);
    box-shadow: 0px 16px 16px -8px rgba(12, 12, 13, 0.1);
}

.pricing-card .card-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
}


.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: var(--h2-size-28);
    font-weight: var(--font-700);
    line-height: 130%;
    letter-spacing: 2%;
}

/* "Limited offer" badge – danger/orange */
.limited-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--danger-color);
    color: white;
    font-size: var(--p-size-12);
    font-weight: var(--font-600);
    line-height: 100%;
}

/* "Freemium" plan badge – outlined with accent colour */
.freemium-badge {
    padding: 3px 12px;
    border: 1px solid var(--success-color);
    border-radius: 50px;
    color: var(--success-color);
    font-size: var(--p-size-12);
    font-weight: var(--font-700);
    line-height: 16px;
    letter-spacing: .3px;
}

.price-box {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 40px;
    letter-spacing: 0%;
}

.price-box .price {
    display: flex;
    align-items: center;
    font-weight: var(--font-700);
    color: var(--text-primary);
    align-items: baseline;
}

.price-box img {
    width: 28px;
    height: 28px;
    margin-right: 4px;
}

.price-box span {
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 100%;
    color: var(--text-grey);
}

.original-price{
    text-decoration: line-through;
    color: var(--text-grey);
    margin-left: 8px;
}

.card-description {
    margin-bottom: 16px;
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 160%;
    letter-spacing: 0%;
}

/* Checkmark feature list inside the card */
.feature-list {
    position: relative;
    list-style: none;
}

.features-list li {
    position: relative;
    margin-bottom: 16px;
    margin-left: 30px;
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 100%;
    list-style: none;
}

/* Custom circled checkmark icon via ::before pseudo-element */
.features-list li::before {
    content: "✓";
    position: absolute;
    left: -32px;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--success-color);

    font-size: 11px;
    font-weight: var(--font-900);
    color: var(--success-color);
}

/* Full-width CTA button at the bottom of the card */
.account-btn {
    display: block;
    margin-top: 35px;
    padding: 16px 24px;
    border-radius: 8px;
    background: var(--success-color);
    color: white;
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    line-height: 110%;
    letter-spacing: 5%;
    text-align: center;
    text-decoration: none;
}


/* --- Hero: Responsive breakpoints ----------------------------------------- */

@media (max-width:1280px) {
    .hero-left {
        /* max-width: 500px; */
    }
}


@media (max-width: 1200px) {
    .hero-section{
        height: auto;
    }
    .hero-content {
        flex-direction: column;
        height: auto;

    }

    .hero-left {
        text-align: center;
        margin-top: 20px;
        max-width: 700px;
    }

    .pricing-card {
        margin-top: 42px;
        margin-bottom: 20px;
    }

    .hero-left h1,
    .hero-left p
     {
        text-align: center;
    }

    .hero-buttons,
    .bottom-points {
        justify-content: center;
    }
}

/* Large mobile */
@media (max-width: 768px) {

    .pricing-card {
        width: 100%;
        margin-top: 32px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-left h1 {
     
        text-align: center;
    }

    .hero-left p {
        text-align: center;
    }

    .hero-buttons,
    .bottom-points {
        flex-direction: column;
    }
   
}



.benefits-section {
    padding: 85px 0px;
    background: #fff;
}

/* --- Section header ---*/
.benefit-heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 65px;
}

/* Small all-caps label above the main heading */
.eyebrow {
    margin-bottom: 10px;
    color: var(--text-grey);
    font-size: var(--p-size-14);
    ;
    font-weight: var(--font-600);
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.benefit-heading h2 {
    font-family: var(--heading-bold-font-family);
    margin-bottom: 10px;
    font-size: clamp(28px, 4vw, var(--h2-size-40));
    font-weight: var(--font-700);
    line-height: 120%;
    letter-spacing: 0%;
}

.benefit-subtitle {
    font-size: var(--p-size-18);
    ;
    font-weight: var(--font-400);
    line-height: 150%;
    color: var(--text-dark);
}


/* --- Benefit rows ---------------------------------------------------------- */

.benefit-row {
    display: grid;
    grid-template-columns: 100px 400px 1fr;
    align-items: flex-start;
    gap: 40px;
    padding: 35px 0;
    border-top: 1px solid var(--text-grey);
}

/* Close the list with a bottom border on the final row */
.benefit-row:last-of-type {
    border-bottom: 1px solid var(--text-grey);
}

/* Numbered circle */
.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-light-blue);
    font-size: var(----h3-size-24);
    font-weight: var(--font-600);
    line-height: 120%;
    color: var(--text-primary);
}

.benefit-title-area h3 {
    margin-bottom: 8px;
    font-size: clamp(var(--p-size-20), 4.5vw, var(--h3-size-24));
    font-weight: var(--font-400);
    line-height: 120%;
    letter-spacing: -1.5%;
}

.benefit-description {
    margin-left: 60px;
    font-size: var(--p-size-18);
    ;
    font-weight: var(--font-400);
    line-height: 150%;
    letter-spacing: -1.5%;
    color: var(--text-dark);
}


/* --- Category / status badges --------------------------------------------- */

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: var(--p-size-12);
    font-weight: var(--font-500);
    line-height: 16px;
    letter-spacing: .3px;
}

/* Arrow icon inside the badge is rotated to point upward */
.benefit-badge svg {
    rotate: -90deg;
}

/* Colour variants */
.danger-badge {
    background: #FFF3F6;
    color: #9D2D49;
}

.primary-badge {
    background: #F2F6FF;
    color: #0065F2;
}

.warning-badge {
    background: #FFF9E9;
    color: #CC6600;
}

.green-badge {
    background: #E8FBE7;
    color: #319E3D;
}


/* --- Section footer CTA --------------------------------------------------- */

.signup-btn {
    display: inline-block;
    margin-top: 65px;
    padding: 16px 24px;
    border-radius: var(--radius-8);
    background: var(--success-color);
    color: var(--bg-main);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    line-height: 110%;
    letter-spacing: 5%;
    text-decoration: none;
}

.bottom-note {
    margin-top: 10px;
    font-size: var(--p-size-14);
    ;
    font-weight: var(--font-400);
    line-height: 100%;
    letter-spacing: 5%;
    color: var(--text-grey);
}


/* --- Benefits: Responsive -------------------------------------------------- */

@media (max-width: 1024px) {


    /* Collapse 3-col grid to 2-col (number + title) */
    .benefit-row {
        grid-template-columns: 80px 1fr;
    }

    /* Description wraps to span both columns at the bottom */
    .benefit-description {
        grid-column: 2;
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {


    /* Single-column layout */
    .benefit-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .benefits-section {
        padding: 60px 20px;
    }


}

.starter-info-section {

    /* background: #FBFBFB; */
    background: linear-gradient(to right,
            #F0F2F3 50%,
            #FBFBFB 50%);
    padding: var(--space-85) 0;
}

/* Two equal columns – stacks on tablet and below */
.info-grid {
    /* padding: 0px clamp(12px, 2.5vw, 24px); */
    max-width: var(--container-width);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
}


.info-box h2 {
    max-width: 580px;
    margin-bottom: 10px;
    font-size: clamp(28px, 4vw, 32px);
    font-weight: var(--font-700);
    line-height: 120%;
    color: var(--text-primary);
    font-family: var(--heading-bold-font-family);
}

.info-text {
    max-width: 620px;
    margin-bottom: 35px;
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    line-height: 140%;
    color: var(--text-primary);
}

/* Checkmark list – mirrors the hero card feature list pattern */
.info-list {
    list-style: none;
}

.info-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    color: var(--text-primary);
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--success-color);

    font-size: 11px;
    font-weight: var(--font-900);
    color: var(--success-color);
}


/* --- Starter Info: Responsive ---------------------------------------------- */



@media (max-width: 1024px) {

  .starter-info-section{
    background: linear-gradient(to bottom, #F0F2F3 50%, #FBFBFB 50%);
  }

    .info-grid {
        grid-template-columns: 1fr;
    }
 
    .info-box h2{
        max-width: 100%;
    }

   
}

@media (max-width: 768px) {

    .info-box:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(124, 136, 156, .20);
    }

}

@media (max-width: 480px) {


    .info-list li {
        font-size: var(--p-size-16);
    }
}


.faq-section {
    padding: 85px 0px;
}

/* --- Section header -------------------------------------------------------- */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 65px;
}

.faq-header h2 {
    font-family: var(--heading-bold-font-family);
    margin: 20px 0 10px;
    font-size: clamp(28px, 4vw, var(--h2-size-40));
    font-weight: var(--font-700);
    color: var(--text-primary);
}

.faq-subtext {
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    line-height: 120%;
    color: var(--text-primary);
}

.mini-heading {
    margin-bottom: 20px;
    font-size: var(--p-size-14);
    color: var(--text-primary);
}

/* "Collapse all" text link, aligned to the right of the header */
.collapse-all {
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    line-height: 110%;
    letter-spacing: 5%;
    color: var(--primary-color);
    cursor: pointer;
}


/* --- FAQ items ------------------------------------------------------------- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 32px;
    border: 1px solid rgb(238, 238, 238);
    border-radius: 20px;
    background: var(--bg-main);
    box-shadow: 0px 5px 14px 0px hsla(230, 73%, 12%, 0.039);
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: var(--font-400);
    line-height: 32px;
    color: var(--text-primary);
}

/* Answer is hidden by default; revealed when .active is present on the item */
.faq-answer {
    display: none;
    margin-top: 24px;
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 1000px;
}

.faq-item.active .faq-answer {
    display: block;
}

.icon {
    font-size: 22px;
}


/* --- FAQ: Responsive ------------------------------------------------------- */

@media (max-width: 768px) {

    .faq-header {
        flex-direction: column;
        gap: 20px;
       align-items: flex-start;
    }


}

@media (max-width: 480px) {

    .faq-section {
        padding: 60px 20px;
    }


    .faq-question {
        font-size: var(--p-size-18);
    }
}


.cta-plan-section {
    padding: 85px 0px;
    background: #F9F9FA;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: center;
    gap: 65px;
}

/* --- Copy column ----------------------------------------------------------- */
.cta-content h2 {
    max-width: 700px;
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, var(--h2-size-40));
    font-weight: var(--font-700);
    line-height: 120%;
    color: var(--text-primary);
}

.cta-text {
    max-width: 650px;
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 160%;
    color: var(--text-primary);
}


/* --- Plan card (right column) ---------------------------------------------- */
.plan-card {
    padding: 32px;
    border: 2px solid white;
    border-radius: 30px;
    background: var(--card-shade);
    box-shadow: -2px 3px 25px 9px rgba(12, 12, 13, 0.05);
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-top h3 {
    font-size: var(--h2-size-28);
    font-weight: var(--font-700);
    line-height: 120%;
    letter-spacing: 2%;
    color: var(--text-primary);
}

/* Outlined badge indicating plan tier */
.plan-badge {
    padding: 10px 22px;
    border: 1px solid var(--success-color);
    border-radius: 30px;
    color: var(--success-color);
    font-size: var(--p-size-12);
    font-weight: var(--font-700);
    line-height: 16px;
    letter-spacing: .3px;
}

.plan-price {
    margin-bottom: 16px;
    font-size: 48px;
    font-weight: var(--font-700);
    line-height: 40px;
    color: var(--text-primary);
}

.plan-price span {
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 100%;
    color: var(--text-grey);
}

.plan-desc {
    margin-bottom: 24px;
    font-size: var(--p-size-16);
    font-weight: var(--font-400);
    line-height: 160%;
    color: var(--text-primary);
}

/* Two side-by-side action buttons */
.plan-buttons {
    display: flex;
    gap: 16px;
}

/* Outlined secondary button within the plan card */
.pricing-btn {
    flex: 1;
    padding: 18px;
    border: 2px solid var(--success-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    line-height: 110%;
    text-align: center;
    text-decoration: none;
}


/* --- CTA: Responsive ------------------------------------------------------- */

@media (max-width: 1024px) {

    .cta-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .plan-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .cta-plan-section {
        padding: 60px 20px;
    }

    .plan-buttons {
        flex-direction: column;
    }

    .plan-top h3 {
        font-size: var(--h2-size-32);
    }

    .plan-price {
        font-size: 50px;
    }
}