/* ============================================================
   MEHI BILLING SOFTWARE PAGE - ULTIMATE PREMIUM v1.0
   Full Width | No Stretch | No Crop | Premium Design
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
.mehi-billing-ultimate {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #f8fafc;
    position: relative;
}

.mehi-billing-ultimate * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   SECTION 1: MEGA HERO
============================================================ */
.billing-mega-hero {
    width: 100%;
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #06101d 0%, #0a1628 40%, #10213e 100%);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.billing-mega-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.billing-mega-orb1 {
    position: absolute;
    width: 700px;
    height: 700px;
    top: -350px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent);
    animation: billingOrbFloat1 25s ease-in-out infinite;
}

.billing-mega-orb2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    animation: billingOrbFloat2 30s ease-in-out infinite reverse;
}

.billing-mega-orb3 {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    animation: billingOrbPulse 18s ease-in-out infinite;
}

.billing-mega-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating Currency Shapes */
.billing-mega-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.billing-shape {
    position: absolute;
    font-size: 40px;
    font-weight: 900;
    opacity: 0.06;
    color: #ffffff;
    animation: billingShapeFloat 20s ease-in-out infinite;
}

.billing-shape-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.billing-shape-2 {
    top: 25%;
    right: 10%;
    animation-delay: 3s;
    font-size: 55px;
}

.billing-shape-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 6s;
    font-size: 50px;
}

.billing-shape-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: 9s;
    font-size: 45px;
}

@keyframes billingShapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(5deg); }
    66% { transform: translate(-15px, 20px) rotate(-3deg); }
}

@keyframes billingOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes billingOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.15); }
    66% { transform: translate(30px, -30px) scale(0.85); }
}

@keyframes billingOrbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.7; }
}

.billing-mega-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Badge */
.billing-mega-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.billing-mega-badge svg {
    color: #8b5cf6;
}

.billing-mega-badge span {
    color: #e2e8f0;
}

/* Title */
.billing-mega-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.billing-mega-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.billing-mega-highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    opacity: 0.3;
    border-radius: 4px;
}

/* Description */
.billing-mega-desc {
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 35px;
}

.billing-br-desktop {
    display: inline;
}

/* Hero Buttons */
.billing-mega-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.billing-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-mega-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    color: #ffffff;
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.3);
}

.billing-mega-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.4);
}

.billing-mega-btn.primary svg {
    transition: transform 0.3s ease;
}

.billing-mega-btn.primary:hover svg {
    transform: translateX(6px);
}

.billing-mega-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.billing-mega-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* Trust Badges */
.billing-mega-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.billing-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.billing-trust-number {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-trust-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.billing-trust-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.06);
}

.billing-br-mobile {
    display: none;
}

/* ============================================================
   SECTION 2: FEATURES OVERVIEW
============================================================ */
.billing-features-overview {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.billing-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.billing-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.billing-features-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.06);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.billing-features-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.billing-features-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-features-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

/* Features Grid */
.billing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.billing-feature-card {
    padding: 32px 28px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-feature-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.08);
}

.billing-feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.billing-feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.billing-feature-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
}

.billing-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.billing-feature-list li {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    flex-shrink: 0;
}

/* ============================================================
   SECTION 3: HOW IT WORKS
============================================================ */
.billing-how-it-works {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.billing-how-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.billing-how-header {
    text-align: center;
    margin-bottom: 50px;
}

.billing-how-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.billing-how-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.billing-how-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.billing-step {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
}

.billing-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: #8b5cf6;
}

.billing-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

.billing-step-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.billing-step h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.billing-step p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.billing-step-arrow {
    font-size: 24px;
    color: #94a3b8;
    padding: 0 12px;
    font-weight: 300;
    flex-shrink: 0;
}

/* ============================================================
   SECTION 4: BENEFITS
============================================================ */
.billing-benefits {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.billing-benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.billing-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.billing-benefits-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.06);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.billing-benefits-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.billing-benefits-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.billing-benefit-card {
    padding: 30px 26px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
}

.billing-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #8b5cf6;
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.06);
}

.billing-benefit-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
}

.billing-benefit-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.billing-benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================================
   SECTION 5: COMPARISON TABLE
============================================================ */
.billing-comparison {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.billing-comparison-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.billing-comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.billing-comparison-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.billing-comparison-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.billing-comparison-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-comparison-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.03);
}

.billing-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.billing-comparison-table thead {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
}

.billing-comparison-table th {
    padding: 18px 24px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.billing-comparison-table th:not(:first-child) {
    text-align: center;
}

.billing-comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-weight: 500;
}

.billing-comparison-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.02);
}

.billing-comparison-table td:not(:first-child) {
    text-align: center;
}

.billing-check {
    font-size: 22px;
}

.billing-cross {
    font-size: 22px;
    color: #ef4444;
}

/* ============================================================
   SECTION 6: TESTIMONIALS
============================================================ */
.billing-testimonials {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.billing-testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.billing-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.billing-testimonials-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.06);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.billing-testimonials-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.billing-testimonials-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.billing-testimonial-card {
    padding: 32px 28px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.billing-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border-color: #8b5cf6;
}

.billing-testimonial-stars {
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.billing-testimonial-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.billing-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.billing-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.billing-testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.billing-testimonial-author span {
    font-size: 13px;
    color: #94a3b8;
}

/* ============================================================
   SECTION 7: BILLING FAQ
============================================================ */
.billing-faq {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.billing-faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.billing-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.billing-faq-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.06);
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.billing-faq-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.billing-faq-highlight {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billing-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.billing-faq-item.active {
    border-color: #8b5cf6;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.06);
}

.billing-faq-btn {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.3s ease;
}

.billing-faq-btn:hover {
    background: rgba(139, 92, 246, 0.02);
}

.billing-faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
}

.billing-faq-item.active .billing-faq-question {
    color: #8b5cf6;
}

.billing-faq-arrow {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.billing-faq-item.active .billing-faq-arrow {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.billing-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-faq-item.active .billing-faq-answer {
    max-height: 500px;
}

.billing-faq-content {
    padding: 0 24px 24px 24px;
    color: #475569;
    line-height: 1.8;
}

.billing-faq-content p {
    font-size: 15px;
    margin-bottom: 12px;
}

.billing-faq-content p:last-child {
    margin-bottom: 0;
}

.billing-faq-content strong {
    color: #0f172a;
}

.billing-faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.billing-faq-list li {
    font-size: 14px;
    color: #475569;
    padding: 4px 0;
}

/* ============================================================
   SECTION 8: CTA BANNER
============================================================ */
.billing-cta {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(135deg, #06101d, #0a1628, #10213e);
    position: relative;
    overflow: hidden;
}

.billing-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent);
    pointer-events: none;
}

.billing-cta::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    left: -150px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent);
    pointer-events: none;
}

.billing-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.billing-cta-icon {
    font-size: 60px;
    margin-bottom: 18px;
    display: block;
}

.billing-cta-content h2 {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.billing-cta-content p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 34px;
    line-height: 1.7;
}

.billing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.billing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-cta-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #2563eb);
    color: #ffffff;
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.3);
}

.billing-cta-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.4);
}

.billing-cta-btn.primary svg {
    transition: transform 0.3s ease;
}

.billing-cta-btn.primary:hover svg {
    transform: translateX(6px);
}

.billing-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.billing-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE - TABLET
============================================================ */
@media (max-width: 1024px) {
    .billing-mega-title {
        font-size: 48px;
    }

    .billing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billing-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billing-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billing-how-steps {
        gap: 20px;
    }

    .billing-step {
        min-width: 160px;
        max-width: 200px;
    }

    .billing-step-arrow {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE LARGE
============================================================ */
@media (max-width: 768px) {
    .billing-mega-hero {
        padding: 60px 0 50px;
    }

    .billing-mega-title {
        font-size: 34px;
    }

    .billing-mega-desc {
        font-size: 16px;
        padding: 0 10px;
    }

    .billing-br-desktop {
        display: none;
    }

    .billing-br-mobile {
        display: block;
    }

    .billing-mega-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .billing-mega-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .billing-mega-trust {
        gap: 24px;
        flex-wrap: wrap;
        padding-top: 25px;
    }

    .billing-trust-number {
        font-size: 26px;
    }

    .billing-trust-divider {
        display: none;
    }

    /* Features */
    .billing-features-overview {
        padding: 60px 0 70px;
    }

    .billing-features-title {
        font-size: 32px;
    }

    .billing-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .billing-feature-card {
        padding: 24px 20px;
    }

    /* How It Works */
    .billing-how-it-works {
        padding: 60px 0 70px;
    }

    .billing-how-title {
        font-size: 32px;
    }

    .billing-how-steps {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .billing-step {
        min-width: auto;
        max-width: none;
        padding: 24px 20px;
    }

    .billing-step-arrow {
        display: none;
    }

    /* Benefits */
    .billing-benefits {
        padding: 60px 0 70px;
    }

    .billing-benefits-title {
        font-size: 32px;
    }

    .billing-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .billing-benefit-card {
        padding: 24px 20px;
    }

    /* Comparison */
    .billing-comparison {
        padding: 60px 0 70px;
    }

    .billing-comparison-title {
        font-size: 32px;
    }

    .billing-comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .billing-comparison-table {
        font-size: 13px;
        min-width: 600px;
    }

    .billing-comparison-table th,
    .billing-comparison-table td {
        padding: 12px 16px;
    }

    /* Testimonials */
    .billing-testimonials {
        padding: 60px 0 70px;
    }

    .billing-testimonials-title {
        font-size: 32px;
    }

    .billing-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .billing-testimonial-card {
        padding: 24px 20px;
    }

    /* FAQ */
    .billing-faq {
        padding: 60px 0 70px;
    }

    .billing-faq-title {
        font-size: 32px;
    }

    .billing-faq-btn {
        padding: 16px 18px;
    }

    .billing-faq-question {
        font-size: 15px;
    }

    .billing-faq-content {
        padding: 0 18px 18px 18px;
    }

    /* CTA */
    .billing-cta {
        padding: 50px 0;
    }

    .billing-cta-content h2 {
        font-size: 28px;
    }

    .billing-cta-content p {
        font-size: 15px;
        padding: 0 10px;
    }

    .billing-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .billing-cta-btn {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    /* Shapes */
    .billing-shape {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE SMALL
============================================================ */
@media (max-width: 480px) {
    .billing-mega-title {
        font-size: 28px;
    }

    .billing-mega-desc {
        font-size: 14px;
    }

    .billing-mega-trust {
        gap: 16px;
    }

    .billing-trust-number {
        font-size: 22px;
    }

    .billing-trust-label {
        font-size: 11px;
    }

    .billing-features-title {
        font-size: 26px;
    }

    .billing-how-title {
        font-size: 26px;
    }

    .billing-benefits-title {
        font-size: 26px;
    }

    .billing-comparison-title {
        font-size: 26px;
    }

    .billing-testimonials-title {
        font-size: 26px;
    }

    .billing-faq-title {
        font-size: 26px;
    }

    .billing-cta-content h2 {
        font-size: 24px;
    }

    .billing-feature-card h3 {
        font-size: 18px;
    }

    .billing-step h3 {
        font-size: 16px;
    }

    .billing-step p {
        font-size: 13px;
    }

    .billing-benefit-card h3 {
        font-size: 16px;
    }

    .billing-testimonial-text {
        font-size: 14px;
    }
}

/* ============================================================
   ANIMATIONS - FADE IN
============================================================ */
@keyframes billingFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.billing-feature-card {
    animation: billingFadeUp 0.5s ease forwards;
    opacity: 0;
}

.billing-feature-card:nth-child(1) { animation-delay: 0.05s; }
.billing-feature-card:nth-child(2) { animation-delay: 0.10s; }
.billing-feature-card:nth-child(3) { animation-delay: 0.15s; }
.billing-feature-card:nth-child(4) { animation-delay: 0.20s; }
.billing-feature-card:nth-child(5) { animation-delay: 0.25s; }
.billing-feature-card:nth-child(6) { animation-delay: 0.30s; }

.billing-benefit-card {
    animation: billingFadeUp 0.5s ease forwards;
    opacity: 0;
}

.billing-benefit-card:nth-child(1) { animation-delay: 0.05s; }
.billing-benefit-card:nth-child(2) { animation-delay: 0.10s; }
.billing-benefit-card:nth-child(3) { animation-delay: 0.15s; }
.billing-benefit-card:nth-child(4) { animation-delay: 0.20s; }
.billing-benefit-card:nth-child(5) { animation-delay: 0.25s; }
.billing-benefit-card:nth-child(6) { animation-delay: 0.30s; }

.billing-testimonial-card {
    animation: billingFadeUp 0.5s ease forwards;
    opacity: 0;
}

.billing-testimonial-card:nth-child(1) { animation-delay: 0.10s; }
.billing-testimonial-card:nth-child(2) { animation-delay: 0.20s; }
.billing-testimonial-card:nth-child(3) { animation-delay: 0.30s; }