/* --- CSS VARIABLES (Theming) --- */
:root {
    /* Core Colors */
    --bg-color: #f7f9f8;
    --text-dark: #1f2b12;
    /* olive-900 */
    --text-body: #374151;
    --text-muted: #9ca3af;

    /* Sidebar & Accents */
    --olive-bg: #394508;
    /* olive-800 */
    --olive-card: #619111;
    --olive-border: #536839;

    /* Highlights */
    --lime-light: #000000;
    /* lime-200 */
    --lime-mid: #d9f2a6;
    /* lime-300 */
    --lime-accent: #000000;
    /* lime-400 (Buttons) */
    --lime-hover: #b3d962;
    /* lime-500 */
    --hover-card-bg: #d2fd9c;

    /* Dimensions & Spacing */
    --sidebar-width: 480px;
    --container-max: 1200px;
    --radius-std: 12px;
    --radius-lg: 20px;

    /* Typography */
    --font-size-h1: clamp(28px, 2.8125vw, 42px);
    --font-size-h2: clamp(22px, 2.5vw, 32px);
    --font-size-h3: clamp(28px, 2.1875vw, 35px);
    --font-size-big-span: clamp(50px, 6.25vw, 80px);
    --font-size-body: 16px;
    --font-size-body-tx: clamp(12px, 1.25vw, 14px);
    --font-size-banner-body: clamp(18px, 1.5625vw, 20px);
    --font-size-body-small: clamp(12px, 1vw, 12px);
    --font-size-button: 10px;
    --font-size-badge: clamp(15px, 1.171875vw, 18px);
    --font-size-small: clamp(12px, 1vw, 12px);
    --font-size-extra-small: clamp(12px, 0.9375vw, 15px);
    --font-size-logo: clamp(18px, 1.40625vw, 22px);
    --font-size-partner-logo: 16px;
    --font-size-box-num: clamp(48px, 3.75vw, 60px);
    --font-size-box-num-large: clamp(64px, 5vw, 80px);
    --font-size-step-icon: clamp(32px, 2.5vw, 40px);
    --font-size-icon-circle: clamp(20px, 1.5625vw, 25px);
    --font-size-bg-icon: clamp(96px, 7.5vw, 120px);
    --font-size-subtitle: clamp(11px, 0.8vw, 12px);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 114%;
    font-size: var(--font-size-body);
    letter-spacing: -0.02em;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* --- TYPOGRAPHY --- */
h1,
.main-heading {
    font-weight: 400;
    font-size: var(--font-size-h1);
    line-height: 1.2;
}

h2,
.title-lg,
.cta-content h2 {
    font-weight: 400;
    font-size: var(--font-size-h2);
    line-height: 106%;
    letter-spacing: -0.02em;
}

h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-size: var(--font-size-h3);
    line-height: 1.4;
}

span.box-num {
    font-size: var(--font-size-big-span);
}

.footer-col h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

p,
.hero-sub,
.promise-desc,
.step p {
    font-weight: 400;
    font-size: var(--font-size-body);
    line-height: 114%;
}

.promise-desc {
    font-weight: 500;
    font-size: 12px;
}

.intro-text {
    font-weight: 400;
    font-size: var(--font-size-banner-body);
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 109%;
}

.text-white {
    color: white !important;
}

/* --- LAYOUT CONTAINER --- */
.app-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* --- SIDEBAR --- */
.sidebar {
    background-color: var(--olive-bg);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* Sidebar spacing sections */
div#Monetize_Your_Network {
    padding-top: 20px;
}

section#Promise {
    padding-top: 2.5rem;
    margin-top: 10px;
}

section.WORKS {
    padding-top: 20px;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.logo {
    font-weight: 700;
    font-size: var(--font-size-logo);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--lime-accent);
}

.btn-start,
.btn-white {
    background-color: #d2fd9c;
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 2.4px;
    font-weight: 400;
    font-size: var(--font-size-button);
    transition: all 0.2s ease;
}

.btn-start:hover,
.btn-white:hover {
    background-color: #619111;
    color: white;
}

.main-heading {
    margin-bottom: 1.5rem;
    color: white;
    line-height: 106%;
    letter-spacing: -2%;
}

.serif-italic {
    color: #d2fd9c;
}

.sidebar div .offering {
    padding-bottom: 10px;
    display: block;
    font-size: var(--font-size-small);
    color: #d2fd9c;
    font-weight: 500;
}

.hero-sub {
    color: #cbcbcb;
    margin-bottom: 3rem;
    max-width: 90%;
    font-size: var(--font-size-body);
    line-height: 109%;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
}

.info-card {
    background-color: var(--olive-card);
    border: 1px solid var(--olive-border);
    border-radius: 4px;
    padding: 1rem 0.5rem;
    text-align: center;
    height: auto;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.info-card:hover {
    background-color: var(--hover-card-bg);
    border-color: var(--hover-card-bg);
    transform: translateY(-2px);
}

.info-card:hover i,
.info-card:hover {
    color: var(--olive-bg);
}

.info-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 0.8rem;
    object-fit: contain;
}

.info-card {
    font-size: var(--font-size-small);
    color: var(--lime-light);
    line-height: 114%;
    transition: color 0.3s;
    font-weight: 500;
}

.sidebar-links {
    margin-top: 1.3rem;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.sidebar-links a {
    color: #d2fd9c;
    font-size: var(--font-size-small);
    letter-spacing: 0%;
    line-height: 114%;
}

.sidebar-links a:hover {
    color: white;
    text-decoration: underline;
}

/* --- MAIN CONTENT AREA --- */
main {
    flex: 1;
    background-color: #f8f9fa;
    overflow-y: auto;
}

.main_heading {
    margin: 20px;
}

.content-area {
    padding: 1.5rem;
    overflow-x: hidden;
    width: 100%;
}

/* --- HERO FRAME & BADGES --- */
.hero-frame {
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #000;
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
    transition: transform 0.8s ease;
}

.hero-frame:hover img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem .6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: var(--font-size-badge);
    font-weight: 400;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
}

.badge.lime {
    background: #8ea76cc4;
    color: #fff;
}

.pos-tl {
    top: 2.5rem;
    left: 1rem;
}

.pos-tr {
    top: 1rem;
    right: 1rem;
    animation-delay: 1s;
}

.pos-bc {
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float-up 2s ease-in-out infinite;
    width: max-content;
}

.check-circle {
    background: #d2fd9c;
    color: var(--lime-accent);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-extra-small);
}

.check-circle .custom-icon {
    width: 22px;
    height: 22px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes float-up {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -6px);
    }
}

/* --- INTRO SECTION --- */
.intro-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.logo-row:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo {
    font-weight: 400;
    font-size: var(--font-size-partner-logo);
    letter-spacing: 0.1em;
    font-family: "Raleway", sans-serif;
}

.c-green {
    color: #15803d;
}

.c-blue {
    color: #2563eb;
}

.c-orange {
    color: #ea580c;
}

.c-olive {
    color: var(--olive-bg);
}

/* --- SECTION HEADERS --- */
.section-head {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.title-lg {
    color: #394508;
    margin-bottom: 0.5rem;
    font-size: var(--font-size-h1);
}

.title-lg span {
    font-weight: 400;
}

.subtitle-sm {
    font-size: var(--font-size-subtitle);
    color: #5d5d5d;
    font-weight: 500;
    line-height: 114%;
}

/* --- GRID LAYOUTS --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

/* Feature Boxes */
.feature-box {
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-box img {
    max-height: 100px;
    min-height: 100px;
    width: auto !important;
    margin: auto;
}

.bg-lime-light,
.bg-lime-mid {
    background-color: #d2fd9c;
}

.box-num {
    font-size: var(--font-size-box-num);
    font-weight: 300;
    color: #394508;
    margin: auto;
}

.box-txt {
    font-weight: 400;
    color: #394508;
    font-size: 1rem;
    text-align: center;
    line-height: 109%;
}

.icon-circle {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-icon-circle);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.bg-icon-overlay {
    position: relative;
    overflow: hidden;
}

.bg-icon-overlay i {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: var(--font-size-bg-icon);
    opacity: 0.1;
    color: var(--text-dark);
}

/* --- PROMISE SECTION --- */
.promise-card {
    margin-bottom: 3rem;
}

.card-img-wrap {
    height: 220px;
    background: #e5e7eb;
    border-radius: var(--radius-std);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-shape {
    width: 140px;
    height: 90px;
    background: #3f4e2d;
    border-radius: 8px;
    transform: rotate(12deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-chip {
    width: 30px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.doc-shape {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 160px;
}

.line {
    height: 6px;
    background: #f3f4f6;
    margin-bottom: 6px;
    border-radius: 2px;
}

.promise-title {
    color: #394508;
    font-weight: 500;
    font-size: var(--font-size-subtitle);
    line-height: 114%;
}

.promise-desc {
    color: #5d5d5d;
    font-size: var(--font-size-subtitle);
}

/* --- WIDE BANNER --- */
.wide-banner {
    max-width: 900px;
    margin: 0 auto 5rem;
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wide-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

/* --- HOW IT WORKS STEPS --- */
.steps-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 140px;
    height: 115px;
    background: var(--olive-bg);
    color: var(--lime-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-step-icon);
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.step-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(89%) sepia(14%) saturate(536%) hue-rotate(34deg) brightness(104%) contrast(95%);
}

.step p {
    color: #000;
    max-width: 220px;
    font-weight: 500;
    font-size: var(--font-size-subtitle);
    line-height: 114%;
}

/* --- CTA SECTION --- */
.cta-wrapper {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
}

.cta-inner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0000004d;
}

.cta-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
    height: 52vh;
}

.cta-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    width: 100%;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: var(--font-size-h2);
}

/* --- FOOTER --- */
.footer-section {
    display: flex;
    justify-content: space-between;
    background: #e5e7eb;
    width: 100%;
    padding: 40px;
}

.footer {
    background: #e5e7eb;
    border-radius: var(--radius-std);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo_2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo_2 h3 {
    font-weight: 400;
    font-size: var(--font-size-h3);
    line-height: 1.4;
    color: #000;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.arrow-img {
    width: 55px;
}

.footer-right-cols {
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    gap: 5rem;
}

.contact-block {
    text-align: left;
}

.contact-block h3 {
    font-size: var(--font-size-body-small);
    margin-bottom: 12px;
    color: #5d5d5d;
    font-weight: 500;
}

.contact-block a {
    display: block;
    color: black;
    text-decoration: none;
    font-size: var(--font-size-body-small);
    font-weight: 500;
    line-height: 114%;
}

.contact-block a:hover,
.legal a:hover {
    color: gray;
}

.legal {
    margin-top: 40px;
}

.legal a {
    display: block;
    text-decoration: none;
    color: #5d5d5d;
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: 114%;
}

/* --- SUBSCRIPTION PAGE STYLES --- */
.sub-nav-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: var(--font-size-body);
    flex-wrap: wrap;
    justify-content: space-between;
}

.active-link {
    color: #d2fd9c;
    font-weight: 700;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.nav-link {
    color: white;
    font-weight: 600;
    opacity: 0.8;
}

.nav-link:hover {
    color: #d2fd9c;
    opacity: 1;
}

.pricing-card {
    background-color: #619111;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
    width: max-content;
    text-align: center;
}

.price-large {
    font-size: 1.26rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-per {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-desc {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.order-summary {
    padding: 1.5rem 0;
    /* margin-bottom: 3rem; */
    color: white;
}

.order-row,
.order-row-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    align-items: center;
}

.summary-label {
    font-weight: 400;
    color: #d2fd9c;
}

.summary-val,
.next-payment {
    color: #d2fd9c;
    font-weight: 600;
}

.view-order-link {
    display: block;
    font-size: 0.8rem;
    color: #d2fd9c;
    text-decoration: underline;
    margin-bottom: 1rem;
}

/* --- FAQ SECTION --- */
.faq-section {
    margin-top: 2rem;
    scroll-behavior: smooth;
}

.faq-heading {
    font-size: var(--font-size-h1);
    color: white;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.active {
    border-color: rgba(210, 253, 156, 0.3);
}

.faq-item:hover {
    border-color: rgba(210, 253, 156, 0.2);
}

.faq-question {
    font-size: var(--font-size-body);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.faq-question:hover {
    color: #d2fd9c;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #d2fd9c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(210, 253, 156, 0.1);
    transform-origin: center;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    background-color: rgba(210, 253, 156, 0.2);
    box-shadow: 0 2px 8px rgba(210, 253, 156, 0.2);
}

.faq-answer {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 1rem;
    margin: 0;
    transform: translateY(-10px);
    will-change: max-height, opacity, transform;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 0rem 1rem 1rem 1rem;
    margin-top: 0.5rem;
    transform: translateY(0);
    animation: fadeIn 0.5s ease forwards;
    max-height: fit-content;
}

.faq-answer b,
.faq-answer strong {
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.faq-question:focus {
    outline: 2px solid rgba(210, 253, 156, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- STRIPE PAYMENT STYLES --- */
.payment-panel {
    width: 85%;
    margin: auto;
    margin-bottom: 30px;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.payment-header {
    margin-bottom: 2rem;
}

.payment-header h2 {
    font-size: 1.75rem;
    color: #1f2b12;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.payment-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.payment-form {
    width: 100%;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2b12;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    margin-bottom: 1.5rem;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #394508;
    box-shadow: 0 0 0 3px rgba(57, 69, 8, 0.1);
}

.stripe-card-container {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 50px;
}

.stripe-card-container.focused {
    border-color: #394508;
    box-shadow: 0 0 0 3px rgba(57, 69, 8, 0.1);
    transition: all 0.3s ease;
}

.stripe-card-container.invalid {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.02);
}

.card-errors {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
    min-height: 1.25rem;
}

.payment-button {
    width: 100%;
    background-color: #394508;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-button:hover:not(:disabled) {
    background-color: #2b3506;
    transform: translateY(-2px);
}

.payment-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.message-box {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: none;
}

.message-box.success {
    background-color: #d2fd9c;
    color: #394508;
    border: 1px solid rgba(57, 69, 8, 0.2);
    display: block;
}

.message-box.error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
    display: block;
}

.payment-success {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out, float 3s ease-in-out infinite;
}

.security-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid #606060;
    padding-top: 8px;
    align-items: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 14px;
}

.security-badge span {
    color: #7a7474;
}

.security-badge i {
    font-size: 1rem;
    color: #10b981;
}


/* --- ON-BOARDING FORM MODAL --- */
combined css code :- .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-container {
    background-color: white;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background-color: #394508;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.partner-info-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #394508;
}

.partner-info-section h3 {
    color: #394508;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.partner-text {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight-text {
    background-color: #d2fd9c;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    color: #394508;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2b12;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #394508;
    box-shadow: 0 0 0 3px rgba(57, 69, 8, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.signature-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.signature-section h3 {
    color: #394508;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.signature-container {
    background-color: white;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: crosshair;
}

.signature-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-color: white;
}

.signature-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.signature-btn {
    padding: 0.5rem 1rem;
    background-color: #394508;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.signature-btn:hover {
    background-color: #2b3506;
}

.signature-btn.clear {
    background-color: #dc2626;
}

.signature-btn.clear:hover {
    background-color: #b91c1c;
}

.signature-preview {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: none;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-submit,
.btn-cancel {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    margin: 0 10px;
}


.form-actions p {
    display: flex;
    align-items: center;
}

.form-actions br {
    display: none;
}

div#save p {
    display: flex;
}

.btn-submit {
    background-color: #394508;
    color: white;
}

.btn-submit:hover {
    background-color: #2b3506;
}

.btn-cancel {
    background-color: #6b7280;
    color: white;
}

.btn-cancel:hover {
    background-color: #4b5563;
}

.required::after {
    content: " *";
    color: #dc2626;
}




.Subscription_page {
    flex-shrink: 0;
    padding: 1.5rem;
    justify-content: space-between;
}

/* ON-BOARDING FORM MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-container {
    background-color: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #394508;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 2rem;
}

/* Agreement Styles */
.agreement-container {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
}

.agreement-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #394508;
}

.agreement-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #394508;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.agreement-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
}

.agreement-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #394508;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.agreement-content {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.clause-number {
    font-weight: 600;
    color: #394508;
    margin-right: 0.5rem;
}

/* FORM STYLES */
.modern-form-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.modern-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #394508;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0rem 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2b12;
    margin-bottom: 0.5rem;
}

.form-label.required::after {
    content: " *";
    color: #dc2626;
}

.modern-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
    color: #1f2b12;
    background: white;
}

.modern-input.readonly {
    background-color: #f8fafc;
    color: #666;
    cursor: not-allowed;
    border-color: #d1d5db;
}

.modern-input:focus {
    outline: none;
    border-color: #394508;
    box-shadow: 0 0 0 3px rgba(57, 69, 8, 0.1);
}

.modern-input::placeholder {
    color: #94a3b8;
}

/* SIGNATURE UPLOAD STYLES */
.signature-upload-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.signature-upload-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #394508;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-upload-area {
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.file-upload-btn {
    padding: 0.75rem 1.5rem;
    background-color: #394508;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.file-input {
    display: none;
}

/* Signature Preview */
.signature-preview {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: none;
}

.signature-preview.active {
    display: block;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.preview-signature {
    width: 200px;
    height: 100px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-signature img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-submit {
    background: linear-gradient(135deg, #394508 0%, #2b3506 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cancel {
    background-color: #6b7280;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Manrope', sans-serif;
}

/* Signature Section */
.signature-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #394508;
}

.signature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem;
}

.signature-party {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.party-title {
    font-weight: 600;
    color: #394508;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-info {
    font-weight: 600;
    color: #394508;
}

.required::after {
    content: " *";
    color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .signature-block,
    .form-grid,
    .preview-content {
        grid-template-columns: 1fr;
    }
}


/* --- RESPONSIVE DESIGN --- */

/* Desktop */
@media (min-width: 1024px) {
    .app-wrapper {
        flex-direction: row;
    }

    .sidebar {
        width: var(--sidebar-width);
        flex-shrink: 0;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
        padding: 1.5rem;
        justify-content: space-between;
    }

    .sidebar.Subscription_page {
      
        height: 100vh;
        overflow-y: auto;
    }

    .sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar::-webkit-scrollbar-track {
        background: var(--olive-bg);
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: #4a5c35;
        border-radius: 3px;
    }

    .content-area {
        padding: 3rem;
    }

    .footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large Desktop */
@media (min-width: 1291px) {
    .sidebar {
        
        min-width: 520px;
    }

    main {
        width: 60vw;
        min-width: 760px;
    }
}

@media (min-width: 1200px) {
    .sidebar {
       min-width: 520px !important;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-img-wrap {
        height: 260px;
    }

    .cta-content {
        padding: 2.5rem;
    }

    .pos-tl {
        top: 4.5rem;
        left: 2rem;
    }

    .pos-tr {
        top: 2rem;
        right: 3rem;
    }

    .pos-bc {
        bottom: 2.5rem;
    }

    .price-large {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .payment-panel {
        padding: 3rem;
    }
}



/* Mobile Large */
@media (min-width: 480px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Desktop */
@media (min-width: 800px) {
    .steps-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 400px) {
    .wide-banner {
        height: 100% !important;
    }



    .cta-inner {
        height: 300px !important;
    }
}

@media (min-width: 1021px) {
    .step-icon {
        width: 100%;
        height: auto;
        aspect-ratio: 140.75 / 115.75;
    }

    .step-icon img {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }
}

/* Max-width breakpoints */
@media (max-width: 1300px) {
    .sidebar {
        justify-content: space-between !important;
    }

    .brand-header {
        margin-bottom: 1.5rem !important;
    }

    .hero-sub {
        margin-bottom: 2rem !important;
    }
}




@media (max-width: 900px) {
    .arrow-img {
        width: 45px;
        top: 30px;
        left: 30px;
    }

    .footer-right-cols {
        top: 30px;
        right: 30px;
        height: calc(100% - 60px);
    }
}



@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-question::after {
        width: 22px;
        height: 22px;
        font-size: 1.3rem;
    }

    .payment-panel {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .security-badges {
        justify-content: center;
        gap: 0.75rem;
    }

    .security-badge {
        min-width: 80px;
        padding: 0.5rem;
        flex: 1;
    }
}

@media (max-width: 600px) {
    .footer-section {
        height: auto;
        padding: 20px;
    }

    .arrow-img {
        position: static;
        display: block;
        margin-bottom: 20px;
        width: 40px;
    }

    .footer-right-cols {
        position: static;
        height: auto;
        flex-direction: column;
        margin-bottom: 0;
        display: block;
    }

    .contact-block {
        margin-bottom: 40px;
    }

    .contact-block a,
    .legal a {
        font-size: var(--font-size-small);
    }
}

@media (max-width: 480px) {
    .payment-methods {
        flex-direction: column;
    }


    .step-label {
        font-size: 11px;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-label,
    .detail-value {
        width: 100%;
    }

    .steps-container,
    .wide-banner,
    .intro-block {
        margin: 0 auto 4rem;
    }

    .cta-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(90%);
        height: 52vh;
    }
}

@media (max-width: 350px) {
    .pos-tl {
        top: 4.5rem;
        left: 1rem;
    }
}

/*  */
.agreement-footer {
    font-size: 12px;
    text-align: center;
    color: #685f5fb5;
}


.content-area.faq-page-container {
    overflow: unset;
}

main{
	    overflow: unset;
}


/* .faq-sticky-sidebar{
    top: 200px;
    position: sticky;
} */