/* Partner Page Styles */

/* ----------------------------------
   Layout Container
   ---------------------------------- */
.referral-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background-color: #edf5f0;
    /* Solid light mint background */
    position: relative;
    overflow: hidden;
}

.hero-grid-top {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.hero-grid-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.referral-section .container {
    max-width: 1300px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* ----------------------------------
   Left Column: Content & Features
   ---------------------------------- */
.content-col {
    flex: 1.8;
}

.content-col h1 {
    font-family: "Rethink Sans";
    font-size: 50px;
    font-weight: 700;
    color: #2A3D39;
    /* Dark slate green */
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.highlight-green {
    color: #089949;
    /* Medium vibrant green */
}

.content-col p {
    font-family: "Rethink Sans";
    font-size: 20px;
    line-height: 1.6;
    color: #393737;
    /* Medium gray */
    margin-bottom: 40px;
    max-width: 650px;
}

/* 2x2 Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.feature-item {
    font-family: "Rethink Sans";
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #222221;
    /* Dark near-black */
}

.icon-circle {
    width: 28px;
    height: 28px;
    background-color: #35725b;
    /* Darker green for icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 14px;
    height: auto;
    fill: #ffffff;
}

/* ----------------------------------
   Right Column: Form Card
   ---------------------------------- */
.form-col {
    flex: 0.8;
    max-width: 450px;
    width: 100%;
}

.form-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Soft drop shadow */
}

.form-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 16px;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    /* Light gray border */
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #374151;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input::placeholder {
    color: #9ca3af;
}

.input-group input:focus {
    border-color: #3a8a6c;
}

/* Custom Phone Input with Prefix */
.phone-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.phone-group:focus-within {
    border-color: #3a8a6c;
}

.phone-group .prefix {
    padding: 14px 16px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    border-right: 1px solid #d1d5db;
    background-color: #ffffff;
}

.phone-group input {
    border: none !important;
    border-radius: 0;
}

/* Checkbox & Terms */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #35725b;
}

.checkbox-group label {
    font-size: 11px;
    color: #111827;
    font-weight: 500;
    line-height: 1.4;
}

.checkbox-group a {
    color: #111827;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color: #357a60;
    /* Dark green button */
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

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

/* ----------------------------------
   Suited For Section
   ---------------------------------- */
.suited-for-section {
    padding: 80px 20px 60px 20px;
    text-align: center;
    background-color: #f7f9f8;
    /* Soft background tint */
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "Rethink Sans";
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-family: "Rethink Sans";
    font-size: 16px;
    color: #484848;
    font-weight: 400;
}

/* Horizontal Scrolling Cards with Fade Effect */
.cards-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* CSS Mask to create the fade-out effect on left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow-x: auto;
    scrollbar-width: none;
}

.cards-container-wrapper::-webkit-scrollbar {
    display: none;
}

.cards-scroll-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.suited-card {
    background-color: #ffffff;
    min-width: 220px;
    padding: 35px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    text-align: center;
    flex-shrink: 0;
    line-height: 1.4;
}

.referral-highlight {
    font-family: "Rethink Sans";
    margin-top: 60px;
    font-size: 14px;
    font-weight: 600;
    color: #00886C;
    /* Dark green matching previous theme */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----------------------------------
   How It Works Section
   ---------------------------------- */
.how-it-works-section {
    background-color: #00886C;
    /* Solid muted forest green */
    padding: 80px 20px;
    color: #ffffff;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Custom SVG Icons Layout */
.step-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 100%;
    height: auto;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-content h3 {
    font-family: "Rethink Sans";
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.step-content p {
    font-family: "Rethink Sans";
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    /* Slightly muted white for readability */
    font-weight: 400;
    margin: 0;
}

/* ----------------------------------
   Responsive Adjustments
   ---------------------------------- */
@media (max-width: 1024px) {
    .referral-section .container {
        gap: 40px;
    }

    .content-col h1 {
        font-size: 40px;
    }

    .form-card {
        padding: 30px;
    }
}

@media (max-width: 950px) {
    .referral-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Wrap to 2 columns on tablets */
        gap: 30px;
    }

    .cards-container-wrapper {
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
}

@media (max-width: 900px) {
    .referral-section .container {
        flex-direction: column;
    }

    .content-col {
        text-align: center;
    }

    .content-col p {
        margin: 0 auto 40px auto;
    }

    .features-grid {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }

    .form-col {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .referral-section {
        padding: 60px 20px;
    }

    .content-col h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Stack features vertically */
        gap: 20px;
    }

    .form-card {
        padding: 24px;
    }
}

/* Header & Footer Overrides */
.main-header {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
}

.main-footer {
    background: #1e3238;
    color: #ffffff;
    padding: 80px 0 40px;
}

/* ----------------------------------
   Commission Section
   ---------------------------------- */
.commission-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.comm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Heading Column */
.comm-left {
    flex: 0 0 35%;
}

.comm-left h2 {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 700;
    color: #364945;
    /* Dark slate green */
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Right Content Column */
.comm-right {
    flex: 1;
    display: flex;
    gap: 40px;
    position: relative;
}

/* Vertical Divider Line between the two right columns */
.comm-right::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #f0f0f0;
    /* Very light subtle line */
    transform: translateX(-50%);
}

.comm-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Top Icon Box */
.icon-box {
    width: 48px;
    height: 48px;
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-circle-solid {
    width: 24px;
    height: 24px;
    background-color: #1a7153;
    /* Dark green matching theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-solid svg {
    width: 14px;
    height: auto;
    fill: #ffffff;
}

.comm-card h3 {
    font-family: "Inter";
    font-size: 20px;
    font-weight: 600;
    color: #04101C;
    margin-bottom: 20px;
}

.comm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comm-list li {
    font-family: "Inter";
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #404040;
    /* Medium gray */
}

.comm-list li .list-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #1a7153;
    /* Dark green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.comm-list li .list-icon svg {
    width: 12px;
    height: auto;
    fill: #ffffff;
}

/* ----------------------------------
   Dashboard Section
   ---------------------------------- */
.dashboard-section {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    /* Solid forest green */
    overflow: hidden;
    /* Allows image to bleed off the edges cleanly */
    position: relative;
}

.dash-container {
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    /* Aligns content with the image height */
    padding-left: 20px;
    /* Padding only on the left, right bleeds */
}

/* Left Content Column */
.dash-content {
    flex: 0 0 45%;
    padding: 100px 40px 100px 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dash-content h2 {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.dash-content .subtitle {
    font-family: "Rethink Sans";
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 30px;
    color: white;
}

.dash-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.dash-list li {
    font-family: "Rethink Sans";
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
    color: #fcfcfc;
}

.dash-list li .list-icon-transparent {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Transparent white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-list li .list-icon-transparent svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.dash-footer-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Right Image Column */
.dash-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Aligns image to the bottom */
}

/* Background geometric shape — adjust top/right/width to reposition */
.dash-bg-shape {
    position: absolute;
    bottom: 0px;
    right: -133px;
    width: 122%;
    /* height: 100%; */
    object-fit: cover;
    object-position: left center;
    z-index: 0;
    pointer-events: none;
}

/* Dashboard screenshot on top */
.dash-screen {
    position: relative;
    z-index: 1;
    width: 130%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: left top;
    transform: translate(0, 10%);
}

/* ----------------------------------
   Responsive Adjustments for Ported Sections
   ---------------------------------- */
@media (max-width: 1024px) {
    .comm-container {
        flex-direction: column;
        gap: 40px;
    }

    .comm-left h2 {
        font-size: 34px;
    }

    .comm-right::before {
        display: none;
        /* Hide divider on smaller screens */
    }

    .dash-content {
        flex: 0 0 50%;
        padding-right: 20px;
    }

    .dash-image-wrapper img {
        width: 150%;
    }
}

@media (max-width: 768px) {
    .commission-section {
        padding: 60px 20px;
    }

    .comm-right {
        flex-direction: column;
        gap: 40px;
    }

    .dash-container {
        flex-direction: column;
        padding-left: 0;
    }

    .dash-content {
        padding: 60px 20px 40px 20px;
        flex: auto;
    }

    .dash-content h2 {
        font-size: 30px;
    }

    .dash-image-wrapper {
        align-items: center;
        overflow: hidden;
    }

    .dash-image-wrapper img {
        width: 100%;
        transform: translate(10%, 0);
        /* Bleed off right side on mobile */
    }
}

/* ----------------------------------
   Milestone Benefits Section
   ---------------------------------- */
.milestone-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

.milestone-section .container,
.technical-burden-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.milestone-section h2 {
    background: linear-gradient(180deg, #000000 0%, #006843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    display: inline-block;
    /* Often helpful for background-clip: text */
}

.milestone-section .subtitle {
    font-family: "DM Sans";
    font-size: 22px;
    font-weight: 400;
    color: #010D3E;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* 2-Column Grid for Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.benefit-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.benefit-card img {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.benefit-card h3 {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Rethink Sans";
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    display: inline-block;
}

.milestone-footer {
    font-size: 15px;
    color: #111827;
    font-weight: 400;
    margin-top: 20px;
}

/* ----------------------------------
   No Technical Burden Section
   ---------------------------------- */
.technical-burden-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #eef5f0;
    /* Soft mint background */
}

.technical-burden-section h2 {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-align: center;
}

.technical-burden-section .subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #484848;
    margin-bottom: 60px;
    text-align: center;
}

/* 5-Column Grid for Technical Support Features */
.burden-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.burden-card {
    background-color: #275643;
    /* Dark slate green */
    border-radius: 12px;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.burden-card:hover {
    transform: translateY(-4px);
}

.burden-card img {
    height: 70px;
    /* Size for the generic group image */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.burden-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 16.32px;
    font-weight: 400;
    line-height: 24.47px;
    color: #FFFFFF !important;
    text-align: center;
    margin: 0;
    display: block;
}

/* ----------------------------------
   Responsive Adjustments for New Sections
   ---------------------------------- */
@media (max-width: 1024px) {
    .burden-grid {
        gap: 15px;
    }

    .burden-card {
        padding: 30px 10px;
    }
}

@media (max-width: 850px) {
    .benefits-grid {
        gap: 20px;
    }

    .burden-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Wrap to 3 columns on tablets */
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .milestone-section,
    .technical-burden-section {
        padding: 60px 20px;
    }

    .milestone-section h2 {
        font-size: 28px;
    }

    .technical-burden-section h2 {
        font-size: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
    }

    .burden-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
    }

    /* Center the 5th odd item on mobile */
    .burden-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .burden-card:last-child {
        max-width: 100%;
    }
}

/* =========================================
   Comparison Table Styles
   ========================================= */
.comparison-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.comparison-table {
    min-width: 750px;
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    align-items: stretch;
    border-bottom: 1px solid #e5e7eb;
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    background-color: #2d2d2d;
    color: #ffffff;
}

.table-header .cell {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.table-header .cell:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.cell {
    padding: 24px;
    font-size: 14px;
    color: #374151;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-feature {
    font-weight: 500;
    border-right: 1px solid #e5e7eb;
}

.col-typical {
    align-items: center;
    text-align: center;
}

.col-accotick {
    background-color: #eaf3ef;
    align-items: center;
    text-align: center;
    font-weight: 500;
    gap: 6px;
}

.col-typical:empty {
    background-color: transparent;
}

.comparison-table .check-icon {
    width: 22px;
    height: 22px;
    background-color: #3aa661;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-table .check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.col-accotick .text-sub {
    font-size: 13px;
    color: #111827;
    margin-top: 2px;
}

/* =========================================
   Call To Action Banner Styles
   ========================================= */
.partner-cta-section {
    position: relative;
    background-color: #265542;
    padding: 50px 20px;
    overflow: hidden;
    text-align: center;
}

.bg-shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    z-index: 1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    left: 10%;
    transform: rotate(15deg);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 5%;
    transform: rotate(-10deg);
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 25%;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 15%;
    transform: rotate(5deg);
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 10px;
    left: -20px;
}

.partner-cta-section .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.partner-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.highlight-mint {
    color: #1CB394;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-cta-section .btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-solid {
    background-color: #ffffff;
    color: #111827;
    border: 2px solid #ffffff;
}

.btn-solid:hover {
    background-color: #f1f5f9;
    border-color: #f1f5f9;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

@media (max-width: 900px) {
    .comparison-header h2 {
        font-size: 32px;
    }

    .partner-cta-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .comparison-section {
        padding: 60px 15px;
    }

    .comparison-header h2 {
        font-size: 28px;
    }

    .cell {
        padding: 16px;
    }

    .partner-cta-section {
        padding: 80px 20px;
    }

    .partner-cta-section h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .partner-cta-section .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}


/* ----------------------------------
   Partner FAQ Section
   ---------------------------------- */
.partner-faq-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.partner-faq-section .faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.partner-faq-section .subtitle {
    display: block;
    color: #3a8a6c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-faq-section .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2b3b34;
    letter-spacing: -0.5px;
}

.partner-faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.partner-faq-section .faq-card {
    background-color: #ffffff;
    border: 1px solid #e5eef1;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.partner-faq-section .faq-card:hover {
    border-color: #d1e2da;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.partner-faq-section .faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.partner-faq-section .faq-question-row h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3353;
    line-height: 1.4;
    margin: 0;
}

.partner-faq-section .icon-circle {
    width: 32px;
    height: 32px;
    background-color: #1a7153;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.partner-faq-section .icon-circle svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.partner-faq-section .faq-answer {
    max-height: 1000px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 16px;
}

.partner-faq-section .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #5c6a82;
    margin: 0;
}

/* Accordion Collapsed State */
.partner-faq-section .faq-card.collapsed .faq-answer {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.partner-faq-section .faq-card.collapsed .icon-circle svg {
    transform: rotate(0deg);
}

.partner-faq-section .faq-card:not(.collapsed) .icon-circle svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .partner-faq-section .section-header h2 {
        font-size: 32px;
    }

    .partner-faq-section .faq-card {
        padding: 20px 24px;
    }

    .partner-faq-section .faq-question-row h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .partner-faq-section .section-header h2 {
        font-size: 32px;
    }

    .partner-faq-section .faq-card {
        padding: 20px 24px;
    }

    .partner-faq-section .faq-question-row h3 {
        font-size: 16px;
    }
}