/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;*/
    /*font: inherit;*/
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


:root {
    --primary-color: #ff5900;
    --secondary-color: #26004d;
    --light-violet: #462668;
    --light-color: #fff;
    --dark-color: #333;
    --gray-color: #f5f5f5;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
img {
    max-width: 100%;
    height: auto;
}
.section {
    padding: 3em 0;
}
.section-header {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1em;
    line-height: 120%;
    text-align: center;
}
p {
    font-size: 1.125rem;
}
p + p {
    margin-top: .5em;
}
a {
    transition: all 300ms ease;
}
ul {
    list-style: disc;
    margin-top: 0;
    margin-left: 20px;
    padding-left: 20px;
}
ul li {
    font-size: 1.125rem;
    line-height: 150%;
}
/* Header */
header {
    background-color: var(--light-violet);
    color: var(--light-color);
    padding: 15px 0;
}

.logo-container {
    max-width: 250px;
    margin: 0 auto;
}


/* Hero Section */
.hero {
    background-color: var(--light-violet);;
    color: var(--light-color);
    padding: 2em 0 4em 0;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2em;
    max-width: 767px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all 300ms ease;
}
.cta-button:hover,
.cta-button:active,
.cta-button:focus {
    background-color: var(--secondary-color);
    color: var(--light-color);
}
.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.cta-button.secondary:hover,
.cta-button.secondary:active,
.cta-button.secondary:focus {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.hero .cta-button {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.hero .cta-button:hover,
.cta-button:active,
.cta-button:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.hero .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}
.hero .cta-button.secondary:hover,
.hero .cta-button.secondary:active,
.hero .cta-button.secondary:focus {
    background-color: var(--light-color);;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
/* Benefits Section */
.section-gray-color {
    background-color: var(--gray-color);
}

.ak-grid,
.ak-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.ak-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.ak-grid-2 .ak-card {
    background-color: rgba(245, 245, 245, .5);
    border: 1px solid rgba(38, 0, 77, 0.1);
}

.ak-card h3 {
    font-size: 1.35rem;
    line-height: 120%;
    color: var(--primary-color);
    margin-bottom: 1em;
}
.ak-card h3 > br {
    display: none;
}
.ak-icon {
    margin-bottom: 1.5em;
}

/* ROI Section */

.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.roi-table th, .roi-table td {
    padding: 12px;
    font-size: 1.125rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.roi-table th {
    background-color: var(--light-violet);
    color: var(--light-color);
}

.roi-table .highlight {
    background-color: rgba(255, 89, 0, 0.06);
    font-weight: bold;
    color: var(--primary-color);
}

/* Testimonials */
.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 1em;
}

/* FAQ Section */

.faq-item {
    margin-bottom: 1em;
}

.faq-question {
    background-color: rgba(255, 89, 0, 0.06);
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.75rem;
}

.faq-question.active::after {
    content: "-";
    font-size: 1.75rem;
}

.faq-answer p {
    font-size: 1.125rem;
    padding: 1em;
}
.use-cases .faq-answer p {
    padding: 0;
}
.use-cases .faq-answer,
.faq-answer-bg {
    background-color: var(--light-color);
}
.faq-answer,
.read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer.active,
.read-more-content.active {
    max-height: 500px;
}

/* Call to Action */
.cta > div > p {
    max-width: 767px;
    margin: 0 auto;
    margin-bottom: 2em;
    text-align: center;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.final-cta .cta-buttons {
    margin-top: 3em;
}
.pricing-container {
    /*display: flex;
    flex-direction: column;
    gap: 20px;*/
    margin: 0 auto;
    margin-bottom: 3em;
}
.pricing-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 50px 25px;
    color: var(--secondary-color);
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(38, 0, 77, 0.1);
}
.pricing-box--bottom {
    text-align: center;
    margin-top: 1em;
}
.pricing-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
}
.pricing-box--price {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 100%;
    text-align: center;
    margin-bottom: .5em;
}
.pricing-box--price > span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 120%;
}
.pricing-list-box {
    max-width: 250px;
    margin: 0 auto;
}
.pricing-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    margin-left: 0;
}
.pricing-box ul li {
    display: flex;
    align-items: flex-start;
}
.pricing-box ul li + li {
    margin-top: 10px;
}
.pricing-box ul li > span {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 10px;
}
.pricing-box--bg {
    background-color: rgba(38, 0, 77, 0.1);
}
.ribbon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -8px;
    right: -10px;
    width: 66px;
    height: 98px;
    background: url("../images/label.png") top center no-repeat;
    background-size: cover;
}
.pricing-box--bg .ribbon {
    background: url("../images/label-violet.png") top center no-repeat;
    background-size: cover;
}
.ribbon > span {
    color: var(--light-color);
    font-size: .85rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding-left: 8px;
}

/* policies */
.last-updated {
    font-style: italic;
    margin-bottom: 1em;
}
.table-of-contents {
    background-color: var(--gray-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 3em;
}
.table-of-contents h3 {
    color: var(--secondary-color);
    margin-bottom: 1em;
}
.table-of-contents ul {
    list-style-type: none;
}
.table-of-contents li {
    margin-bottom: .5em;
}
.table-of-contents ul a {
    color: var(--primary-color);
    text-decoration: none;
}
.policy-section {
    margin-bottom: 1.5em;
}
.policy-container {
    max-width: 800px;
    margin: 0 auto;
}
.policy-container--center {
    text-align: center;
}
.policy-container--center h3 {
    color: var(--primary-color);
    margin-bottom: .75em;
    font-size: 1.5rem;
}
.policy-section h2 {
    color: var(--secondary-color);
    margin-bottom: .5em;
    font-size: 1.8rem;
}
.policy-section h3 {
    margin-bottom: .5em;
    margin-top: .5em;
    font-size: 1.3rem;
}
.policy-highlight {
    background-color: var(--gray-color);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
}
.ak-phone {
    color: var(--dark-color);
    text-decoration: none;
}
/* How It Works Section */
.steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}
.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--primary-color);
    z-index: 1;

}
.step-number {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.step-content {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}
.step-content h3 {
    text-transform: uppercase;
}
/* #footer */
#footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3em 0;
    text-align: center;
}
.footer-logo-wrap {
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: .5em;
}
.footer-nav {
    margin-bottom: 2em;
    margin-top: 2em;
}
.footer-nav ul {
    list-style: none;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
}
.footer-nav li + li {
    margin-top: .5em;
}
.footer-nav li a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-color);
    text-transform: uppercase;
    text-decoration: none;
}
.footer-nav li a:hover,
.footer-nav li a:active,
.footer-nav li a:focus {
    color: var(--primary-color);
}
#footer small {
    opacity: .7;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
    background-color: var(--light-violet);
}

/* Responsive Design */
@media (min-width: 768px) {
    .section {
        padding: 4em 0;
    }
    .section-header {
        font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .ak-grid,
    .ak-grid-2 {
        grid-template-columns: repeat(1, 1fr);
        place-items: center;
    }
    .ak-card h3 {
        font-size: 1.50rem;
    }
    .pricing-container {
        flex-direction: row;
    }
    .ak-card,
    .pricing-box {
        width: 100%;
        max-width: 450px;
    }

}

@media (min-width: 992px) {
    .section {
        padding: 4em 0 5em 0;
    }
    .section--minheight {
        min-height: 75vh;
    }
    .section-header {
        font-size: 2.75rem;
    }
    .hero {
        padding: 4em 0 6em 0;
    }
    .hero h1 {
        font-size: 4rem;
        line-height: 120%;
    }
    .hero p {
        font-size: 1.5rem;
    }

    .ak-grid {
        grid-template-columns: repeat(3, 1fr);
        place-items: stretch;
    }
    .ak-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        place-items: stretch;
    }
    .ak-grid-2 .ak-card {
        width: 100%;
        max-width: 100%;
    }
    .ak-card h3 {
        font-size: 1.75rem;
    }
    .ak-card h3 > br {
        display: block;
    }
    .roi-table .highlight {
        font-size: 150%;
    }
    .ak-card {
        padding: 60px 30px;
    }
    .faq-question {
        font-size: 1.25rem;
    }
    .step-content {
        padding: 40px 30px;
    }
    .step-content h3 {
        margin-bottom: .5em;
    }
    .policy-container--center h3 {
        font-size: 1.75rem;
    }
    #footer {
        padding: 5em 0 3em 0;
    }
    .footer-nav li {
        display: inline-block;
    }
    .footer-nav li + li {
        margin-top: auto;
        margin-left: 1em;
    }
}

/* Read More Functionality */
.read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.read-more-toggle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1.5em;
}

.read-more-toggle::after {
    content: " ▼";
    font-size: 0.8em;
}

.read-more-toggle.active::after {
    content: " ▲";
}

.read-more-toggle.active + .read-more-content {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
    margin-top: 1em;
}

/* ---------- */
/*.use-cases {
    padding: 60px 0;
}*/

.section-subheader {
    text-align: center;
    max-width: 800px;
    margin-top: -1em;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.use-cases-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

/* Styling for expandable use cases */
.use-case-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.use-case-question {
    background-color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s;
}

.use-case-question:hover {
    background-color: #f9f9f9;
}

.use-case-question span {
    margin: 0;
    /*color: var(--primary-color);*/
    /*font-size: 1.2rem;*/
    flex: 1;
}

.use-case-question::after {
    content: "+";
    font-size: 1.75rem;
    /*color: var(--secondary-color);*/
}

.use-case-question.active {
    border-bottom: 1px solid #eee;
}

.use-case-question.active::after {
    content: "−";
}
.use-case-icon {
    /*background-color: var(--secondary-color);*/ /* Ensures all backgrounds are purple */
}

.use-case-icon img.orange-icon {
    /* This filter converts the icon to orange (#ff5900) */
    filter: brightness(0) saturate(100%) invert(47%) sepia(31%) saturate(4032%) hue-rotate(359deg) brightness(102%) contrast(101%);
}
.use-case-icon {
   /* background-color: var(--secondary-color);*/
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .use-case-icon {
        display: none;
    }
}
.use-case-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: var(--light-color);
}

.use-case-answer.active {
    padding: 20px;
    max-height: 2000px;
}

.chat-example {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 15px;
    margin: 1em;
    max-width: 600px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 85%;
}

.chat-message.customer {
    background-color: #e6e6e6;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background-color: var(--light-violet);
    color: #fff;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.chat-message p {
    margin: 0;
}
.use-case-result--wrap {
    padding-bottom: 0;
}
.use-case-result {
    background-color: rgba(255, 89, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 1em;
}

.use-case-result p {
    margin: 0;
    color: var(--secondary-color);
}

.use-cases-cta {
    text-align: center;
    margin-top: 3em;
}

.use-cases-cta p:first-of-type {
    margin-bottom: 1em;
}
.use-cases-cta p:last-of-type {
    margin-top: 1em;
}

@media (min-width:768px) {
    .section-subheader {
        font-size: 1.35rem;
    }
}

/* Commission Structure Section Styles */
/*.commission-structure {
    padding: 60px 0;
}

.section-subheader {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}*/

/* Commission Tiers Cards */
.commission-tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.tier-card {
    background-color: var(--light-color);
    border: 1px solid rgba(38, 0, 77, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    position: relative;
    padding: 50px 25px;
    box-sizing: border-box;
}
.tier-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.tier-header {
    text-align: center;
}

.tier-icon {
    max-width: 60px;
    margin-bottom: 10px;
}

.tier-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.tier-content {
    padding: 20px;
}

.tier-rate {
    text-align: center;
    color: var(--primary-color);
}

.tier-description {
    text-align: center;
    margin-bottom: 15px;
    color: #666;
}

.tier-requirement {
    text-align: center;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1em;
    font-size: 1.125rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.tier-benefits li span {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Bronze/Silver/Gold styling */
.tier-card.bronze .tier-rate {
    color: #cd7f32;
}

.tier-card.silver .tier-rate {
    color: #a7a7ad;
}

.tier-card.gold .tier-rate {
    color: #d4af37;
}

/* Income Potential Section */

.calculator-container {
    overflow-x: auto;
}

.income-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.income-table th {
    background-color: var(--light-violet);
    color: var(--light-color);
    font-size: 1.125rem;
    padding: 15px;
    text-align: left;
}

.income-table td {
    font-size: 1.125rem;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.income-table tr:last-child td {
    border-bottom: none;
}
.income-table tr {
    transition: background-color 300ms ease;
}
.income-table tr:hover,
.income-table tr:focus {
    background-color: #f1f1f1;
}

.tier-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.tier-badge.bronze {
    background-color: #cd7f32;
}

.tier-badge.silver {
    background-color: #a7a7ad;
}

.tier-badge.gold {
    background-color: #d4af37;
}

.premium-row {
    background-color: rgba(255, 89, 0, 0.06);
}

.table-note {
    text-align: right;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .tier-card {
        width: 100%;
        max-width: 350px;
    }

    .income-table th,
    .income-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}
@media (max-width: 1150px) {
    .commission-tiers {
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 768px) {
    .tier-badge {
        min-width: 100px;
        text-align: center;
    }
}