/* Base styles from base_sales.html */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    p, span, div, h1, h2, h3, h4, h5, h6 {
        -webkit-user-select: text;
        user-select: text;
    }

    .btn {
        min-height: 44px;
        min-width: 44px;
    }
}

body {
    font-family: 'Inter', sans-serif;
}

.sales-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.sales-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333 !important;
}

.sales-navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .sales-navbar {
        padding: 10px 0;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 8px;
        font-size: 1.2rem;
        color: #333 !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sales-navbar .nav-link {
        margin: 5px 0;
        padding: 10px 15px !important;
        border-radius: 5px;
        text-align: center;
        display: block;
        min-height: 44px;
        line-height: 24px;
    }

    .sales-navbar .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .btn-primary.ms-2 {
        margin: 10px 0 0 0 !important;
        width: 100%;
        min-height: 44px;
    }
}

@media (max-width: 576px) {
    .sales-navbar .navbar-brand {
        font-size: 1.3rem;
    }

    .sales-navbar .nav-link {
        font-size: 1rem;
        padding: 12px 15px !important;
    }
}

.sales-navbar .btn {
    margin-left: 10px;
}

main {
    margin-top: 80px;
}

.sales-footer {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-brand {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

.footer-tagline {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.footer-disclaimer strong {
    color: white;
}

.footer-bottom {
    padding-top: 10px;
}

.footer-copyright,
.footer-made-with {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e0;
}

.footer-made-with .heart {
    color: #f56565;
    font-size: 1.1rem;
}

/* Pricing page specific styles */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/debtfree-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: left;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 50%;
    color: white;
    position: relative;
}

.hero-text {
    margin-bottom: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
    color: white !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    line-height: 1.3;
    color: white !important;
    opacity: 0.95;
}

.hero-cta {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: auto;
}

.cta-button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 18px 36px;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    text-shadow: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
    color: white;
    text-decoration: none;
}

.pricing-cards {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    padding: 60px 0 80px;
    color: white;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 800px;
    width: 100%;
}

.pricing-card.featured {
    border-color: #007bff;
    box-shadow: 0 20px 60px rgba(0,123,255,0.15);
    height: 800px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,123,255,0.2);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(10deg);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    z-index: 10;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card {
    position: relative;
    overflow: visible;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.plan-description {
    color: #495057;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.price-period {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 15px 0;
    flex-grow: 1;
}

.features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #212529;
    font-weight: 500;
}

.features-list li .check-icon {
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

.cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.btn-primary-custom {
    background: #007bff;
    color: white;
}

.btn-primary-custom:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529 !important;
}

.feature-description {
    color: #495057 !important;
    line-height: 1.6;
}

.features-section h2 {
    color: #212529 !important;
}

.features-section .lead {
    color: #495057 !important;
}

.screenshots-section {
    padding: 80px 0;
    background: white;
}

.screenshots-section h2 {
    color: #212529 !important;
}

.screenshots-section .lead {
    color: #495057 !important;
}

.screenshots-section h4 {
    color: #007bff !important;
}

.screenshots-section h5 {
    color: #212529 !important;
}

.screenshots-section .text-muted {
    color: #495057 !important;
}

.bg-light h2 {
    color: #212529 !important;
}

.gallery-swiper {
    margin-top: 50px;
    padding: 20px 0 60px;
}

.swiper-slide {
    text-align: center;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.screenshot-item {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.screenshot-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 500px;
    object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
    color: #007bff !important;
    background: white;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #007bff;
    color: white !important;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #dee2e6 !important;
    opacity: 1 !important;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007bff !important;
    transform: scale(1.2);
}

.gallery-item-header {
    color: #007bff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.gallery-item-title {
    color: #212529;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-item-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-section {
    background: #007bff;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 1.2rem;
    opacity: 0.95;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.benefit-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-item h5 {
    color: #212529 !important;
    font-weight: 600;
}

.benefit-item p {
    color: #6c757d !important;
}

.table th, .table td {
    color: #212529 !important;
    background-color: white !important;
}

.table-dark th {
    color: white !important;
    background-color: #343a40 !important;
}

.table-striped tbody tr:nth-of-type(odd) td {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.table-striped tbody tr:nth-of-type(even) td {
    background-color: white !important;
    color: #212529 !important;
}

.table-bordered {
    border: 1px solid #dee2e6 !important;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
}

.step-number + h5 {
    color: #212529 !important;
    font-weight: 600;
}

/* How It Works Section - White Text */
#how-it-works h5 {
    color: white !important;
    font-weight: 600;
}
#how-it-works .text-muted {
    color: white !important;
    opacity: 0.9;
}

.pricing-cards h2 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.pricing-cards .lead {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-size: 1.2rem;
}

.py-5.text-center {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white !important;
    padding: 60px 0 !important;
}

.py-5.text-center h2 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.py-5.text-center .lead {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.bg-light .lead {
    color: #495057 !important;
    text-shadow: none !important;
}

.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 8px !important;
    background-color: #f8f9fa;
    margin-bottom: 12px;
}

.accordion-button {
    background-color: #f8f9fa !important;
    color: #212529 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #212529 !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(180deg);
}

.accordion-button:hover {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

.accordion-button:not(.collapsed):hover {
    background-color: #343a40 !important;
    color: white !important;
}

.accordion-collapse {
    border-top: 1px solid #dee2e6;
}

.accordion-body {
    background-color: #212529 !important;
    color: white !important;
    padding: 24px;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 0 0 8px 8px;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    z-index: 1000;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
}

/* Case Studies Section */
.case-study-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.case-study-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.case-study-title {
    color: #212529;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0;
}

.case-study-content {
    flex-grow: 1;
}

.before-section, .after-section {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.before-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 20%, #fff5f5 100%);
    border: 1px solid #fc8181;
}

.after-section {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 20%, #f0fff4 100%);
    border: 1px solid #68d391;
}

.before-title, .after-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.before-title {
    color: #c53030;
}

.after-title {
    color: #38a169;
}

.before-text, .after-text {
    color: #4a5568 !important;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.before-text li, .before-section li {
    color: #4a5568 !important;
    font-weight: normal;
    margin-left: 20px;
}

.case-study-card .before-section p.before-text,
.case-study-card .before-section .before-text,
.before-section p, 
.before-section p *,
.before-text {
    color: #4a5568 !important;
    opacity: 1 !important;
}

.case-study-card .after-section p.after-text,
.case-study-card .after-section .after-text,
.after-section p, 
.after-section p *,
.after-text,
.after-text li,
.after-section li {
    color: #4a5568 !important;
    opacity: 1 !important;
    font-weight: normal;
}

.after-text ul {
    margin-left: 20px;
}

.debt-breakdown, .results-breakdown {
    background: transparent;
    padding: 12px;
    border-radius: 0;
    border: none;
    color: #212529 !important;
}

.debt-breakdown small, .results-breakdown small {
    color: #212529 !important;
}

.what-made-difference {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.difference-title {
    color: #007bff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.difference-list {
    margin: 0;
    padding-left: 20px;
    color: #495057;
}

.difference-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 1200px) {
    .hero-section {
        height: 580px;
        padding: 60px 0;
    }

    .pricing-cards .lead {
        font-size: 1.1rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 460px;
        padding: 50px 0;
    }

    .hero-content {
        max-width: 60%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .pricing-cards {
        padding: 50px 0 70px;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 0;
    }

    .screenshot-frame {
        max-width: 600px;
    }

    .table-responsive {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        padding: 60px 0;
        text-align: center;
    }

    .gallery-swiper {
        margin-top: 30px;
        padding: 15px 0 40px;
    }

    .screenshot-frame {
        padding: 15px;
        margin-bottom: 20px;
    }

    .screenshot-frame img {
        max-height: 300px;
    }

    .gallery-item-header {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .gallery-item-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .gallery-item-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .hero-cta {
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
        white-space: nowrap;
    }

    .display-4 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .lead {
        font-size: 1rem !important;
    }

    .pricing-cards {
        padding: 40px 0 60px;
    }

    .pricing-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .screenshot-frame {
        padding: 10px;
        max-width: 100%;
    }

    .guarantee-title {
        font-size: 2rem;
    }

    .guarantee-text {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .table-responsive {
        font-size: 0.8rem;
    }

    .table th, .table td {
        padding: 8px 6px !important;
    }

    .py-5.text-center {
        padding: 40px 0 !important;
    }

    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .case-study-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .case-study-title {
        font-size: 1.1rem;
    }

    .before-section, .after-section {
        padding: 15px;
    }

    .before-title, .after-title {
        font-size: 1rem;
    }

    .before-text, .after-text {
        font-size: 0.9rem;
    }

    .what-made-difference {
        padding: 15px;
    }

    .difference-list li {
        font-size: 0.85rem;
    }

    .debt-breakdown, .results-breakdown {
        padding: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 520px;
        padding: 50px 15px;
    }

    .hero-content {
        margin-bottom: 35px;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .hero-cta {
        bottom: 50px;
    }

    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .case-study-card {
        padding: 15px;
    }

    .case-study-title {
        font-size: 1rem;
        line-height: 1.4;
    }

    .before-section, .after-section {
        padding: 12px;
    }

    .what-made-difference {
        padding: 12px;
    }
}

/* Contact Modal Styles */
.contact-modal .modal-content {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
}

.contact-modal .modal-header {
    background-color: #2d3748;
    border-bottom: 1px solid #4a5568;
    padding: 1.5rem;
}

.contact-modal .modal-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.contact-modal .modal-body {
    padding: 1.5rem;
}

.contact-modal .modal-footer {
    background-color: #2d3748;
    border-top: 1px solid #4a5568;
    padding: 1rem 1.5rem;
}

.contact-modal .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-input {
    background-color: #1a202c;
    border: 1px solid #4a5568;
    color: #ffffff;
    border-radius: 0.375rem;
    padding: 0.75rem;
}

.contact-input:focus {
    background-color: #1a202c;
    border-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-input::placeholder {
    color: #a0aec0;
}

.contact-input option {
    background-color: #1a202c;
    color: #ffffff;
}

.contact-info-alert {
    background-color: #1e3a5f;
    border: 1px solid #4299e1;
    color: #e2e8f0;
}

.contact-info-alert .fa-info-circle {
    color: #4299e1;
}

.contact-modal .btn-secondary {
    background-color: #4a5568;
    border-color: #4a5568;
    color: #ffffff;
}

.contact-modal .btn-secondary:hover {
    background-color: #2d3748;
    border-color: #2d3748;
}

.contact-modal .btn-primary {
    background-color: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
}

.contact-modal .btn-primary:hover {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

/* Exit Intent Modal Styles */
.exit-intent-modal .modal-content {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
}

.exit-intent-modal .modal-header {
    background-color: #2d3748;
    border-bottom: 1px solid #4a5568;
    padding: 1.5rem;
}

.exit-intent-modal .modal-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.exit-intent-modal .modal-body {
    padding: 1.5rem;
}

.exit-intent-modal .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.exit-intent-modal .btn-primary {
    background-color: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
}

.exit-intent-modal .btn-primary:hover {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

/* eBook Section Styles */
#free-ebook {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#free-ebook .ebook-content {
    padding-right: 2rem;
}

#free-ebook .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#free-ebook .ebook-benefits li {
    font-size: 1.05rem;
    line-height: 1.8;
}

#free-ebook .ebook-benefits li strong {
    color: #fff;
}

#free-ebook .ebook-stats {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

#free-ebook .ebook-stats small {
    color: rgba(255, 255, 255, 0.9);
}

#free-ebook .ebook-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#free-ebook .ebook-form-card h3 {
    color: #333;
    font-weight: 700;
}

#free-ebook .ebook-input {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

#free-ebook .ebook-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#free-ebook .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#free-ebook .btn-success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#free-ebook .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Kit Form Styling */
#free-ebook .formkit-form {
    background: transparent !important;
}

#free-ebook .formkit-header h3 {
    color: #333 !important;
    margin-bottom: 0.5rem;
    font-size: 1.5rem !important;
}

#free-ebook .formkit-subheader p {
    color: #666 !important;
    margin-bottom: 1.5rem;
    font-size: 1rem !important;
}

#free-ebook .formkit-field {
    margin-bottom: 1rem;
}

#free-ebook .formkit-input {
    width: 100%;
    padding: 0.75rem 1rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    color: #333333 !important;
}

#free-ebook .formkit-input::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}

#free-ebook .formkit-input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none;
    background-color: #ffffff !important;
}

#free-ebook .formkit-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 0.5rem;
}

#free-ebook .formkit-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4) !important;
}

#free-ebook .formkit-guarantee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem !important;
    color: #666 !important;
}

#free-ebook .seva-fields {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Kit Form Success Message Styling */
#free-ebook .formkit-form[data-format="inline"] .formkit-success {
    background-color: #10b981 !important;
    color: white !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin: 2rem 0 !important;
    line-height: 1.6 !important;
}

#free-ebook .formkit-form .formkit-alert-success {
    background-color: #10b981 !important;
    color: white !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 1rem !important;
    margin: 1rem 0 !important;
    border: none !important;
}

/* Hide form fields after successful submission */
#free-ebook .formkit-form.success .seva-fields,
#free-ebook .formkit-form.success .formkit-header,
#free-ebook .formkit-form.success .formkit-subheader {
    display: none;
}

@media (max-width: 991px) {
    #free-ebook .ebook-content {
        padding-right: 0;
        text-align: center;
    }

    #free-ebook .ebook-stats {
        justify-content: center;
    }
}

/* Kit Exit Popup Modal - Will be handled by JavaScript */
