/* Landing Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title-logo {
    margin-bottom: 2rem;
}

.hero-title-logo .title-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary.btn-large {
    background: #ffd700;
    color: #333;
    border: 2px solid #ffd700;
}

.btn-primary.btn-large:hover {
    background: #ffe55c;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary.btn-large {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Dashboard Preview */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.preview-dots span:first-child {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:last-child {
    background: #28ca42;
}

.preview-title {
    font-weight: 600;
    color: #333;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.preview-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
}

.steps-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 1rem;
}

.step-item {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    margin: 0 0.5rem;
}

/* Plans Section */
.plans-section {
    padding: 6rem 1rem;
    background: white;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 50px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.billing-option {
    font-weight: 600;
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-option.active {
    color: #667eea;
}

.discount-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.toggle-label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-input:checked + .toggle-label {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.toggle-input:checked + .toggle-label:before {
    transform: translateX(30px);
}

/* Yearly Savings */
.yearly-savings {
    margin-top: 0.5rem;
    text-align: center;
}

.savings-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.savings-amount {
    font-weight: 700;
}

.plan-template {
    display: none !important;
}

#plans-container .plan-card:not(.plan-template) {
    display: flex;
}

.plans-grid {
    max-width: 1400px;
    margin: 0 auto;
}

#plans-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.plan-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.plan-card.popular {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.billing-cycle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-features {
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.feature-item i {
    color: #28ca42;
    font-size: 0.875rem;
    width: 14px;
    flex-shrink: 0;
}

.feature-item span {
    color: #555;
}

.plan-actions {
    margin-top: auto;
}

.btn-plan {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid transparent;
}

.btn-plan.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.btn-plan.btn-primary:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-plan.btn-secondary {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.btn-plan.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.loading-plans {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.loading-plans i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.plans-error {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.plans-error i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #dc3545;
}

.plans-error .btn-primary {
    margin-top: 1rem;
}

.plans-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.plans-note p {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plans-note i {
    color: #28ca42;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-actions {
    margin-bottom: 2rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.cta-note i {
    color: #28ca42;
}

/* Plans Section Responsive */
@media (max-width: 1400px) {
    #plans-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .plan-name {
        font-size: 1.125rem;
    }
    
    .popular-badge {
        padding: 0.35rem 1rem;
        font-size: 0.75rem;
        top: -12px;
    }
}

@media (max-width: 1200px) {
    #plans-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.25rem;
    }
    
    .plan-name {
        font-size: 1.25rem;
    }
    
    .popular-badge {
        padding: 0.4rem 1.1rem;
        font-size: 0.8rem;
        top: -14px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    #plans-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .popular-badge {
        padding: 0.35rem 1rem;
        font-size: 0.75rem;
        top: -12px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 4rem 1rem;
    }
    
    .plans-grid {
        padding: 0;
    }
    
    .billing-toggle {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.875rem 1rem;
        max-width: 320px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .billing-option {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .toggle-switch {
        width: 50px;
        height: 25px;
        flex-shrink: 0;
    }
    
    .toggle-label:before {
        height: 18px;
        width: 18px;
        left: 3.5px;
        bottom: 3.5px;
    }
    
    .toggle-input:checked + .toggle-label:before {
        transform: translateX(25px);
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    #plans-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .popular-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
        top: -10px;
    }
}

@media (max-width: 576px) {
    .plans-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    #plans-container {
        gap: 2rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .plan-name {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-item i {
        font-size: 0.8rem;
        width: 12px;
    }
}

@media (max-width: 400px) {
    .plans-section {
        padding: 2rem 1rem;
    }
    
    .plans-grid {
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    #plans-container {
        gap: 1rem;
        max-width: 100%;
    }
    
    .plan-card {
        padding: 1rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .plan-name {
        font-size: 0.9rem;
    }
    
    .plan-description {
        font-size: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-item i {
        font-size: 0.75rem;
        width: 10px;
    }
    
    .btn-plan {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .popular-badge {
        padding: 0.25rem 0.7rem;
        font-size: 0.65rem;
        top: -8px;
    }
}

/* Responsive Design */
@media (max-width: 992px) and (min-width: 769px) {
    .steps-container {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .step-item {
        max-width: 200px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-arrow {
        font-size: 1.25rem;
        margin: 0 0.25rem;
    }
    
    /* Billing Toggle - Tablet */
    .billing-toggle {
        max-width: 400px;
        padding: 0.875rem 1.25rem;
        gap: 0.875rem;
    }
    
    .billing-option {
        font-size: 0.95rem;
    }
    
    .toggle-switch {
        width: 55px;
        height: 28px;
    }
    
    .toggle-label:before {
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
    }
    
    .toggle-input:checked + .toggle-label:before {
        transform: translateX(27px);
    }
}

@media (max-width: 850px) and (min-width: 769px) {
    /* Billing Toggle - Large Mobile/Small Tablet */
    .billing-toggle {
        max-width: 380px;
        padding: 0.875rem 1.125rem;
        gap: 0.75rem;
    }
    
    .billing-option {
        font-size: 0.9rem;
    }
    
    .toggle-switch {
        width: 52px;
        height: 26px;
    }
    
    .toggle-label:before {
        height: 19px;
        width: 19px;
        left: 3.5px;
        bottom: 3.5px;
    }
    
    .toggle-input:checked + .toggle-label:before {
        transform: translateX(26px);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title-logo .title-logo {
        height: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .step-item {
        max-width: 100%;
        width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-logo .title-logo {
        height: 55px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .dashboard-preview {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .plan-name {
        font-size: 1.25rem;
    }
    
    /* How it Works - Mobile */
    .how-it-works-section {
        padding: 4rem 0;
    }
    
    .steps-container {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-arrow {
        font-size: 1.25rem;
    }
    
    /* Billing Toggle - Small Mobile */
    .billing-toggle {
        flex-direction: row;
        gap: 0.4rem;
        padding: 0.75rem 0.875rem;
        max-width: 280px;
        border-radius: 25px;
    }
    
    .billing-option {
        font-size: 0.8rem;
    }
    
    .toggle-switch {
        width: 42px;
        height: 21px;
    }
    
    .toggle-label:before {
        height: 15px;
        width: 15px;
        left: 3px;
        bottom: 3px;
    }
    
    .toggle-input:checked + .toggle-label:before {
        transform: translateX(21px);
    }
    
    .discount-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Dashboard Image */
.dashboard-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    min-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: perspective(1000px) rotateX(20deg) rotateY(15deg);
    transition: transform 0.3s ease;
}

.dashboard-image:hover {
    transform: perspective(1000px) rotateX(15deg) rotateY(10deg);
}

@media (max-width: 768px) {
    .dashboard-image {
        max-width: 400px;
        min-width: 300px;
        transform: perspective(1000px) rotateX(15deg) rotateY(10deg);
        margin-bottom: 2rem;
    }
    
    .dashboard-image:hover {
        transform: perspective(1000px) rotateX(10deg) rotateY(5deg);
    }
}

@media (max-width: 480px) {
    .dashboard-image {
        max-width: 300px;
        min-width: 250px;
        transform: perspective(1000px) rotateX(10deg) rotateY(5deg);
        padding: 0.5rem;
        margin-bottom: 3rem;
    }
    
    .dashboard-image:hover {
        transform: perspective(1000px) rotateX(5deg) rotateY(2deg);
    }
}

@media (max-width: 360px) {
    .dashboard-image {
        max-width: 250px;
        min-width: 200px;
        transform: perspective(1000px) rotateX(5deg) rotateY(2deg);
        margin-bottom: 3rem;
    }
    
    /* How it Works - Very Small Mobile */
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .steps-container {
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .step-arrow {
        font-size: 1.1rem;
    }
    
    /* Billing Toggle - Very Small Mobile */
    .billing-toggle {
        max-width: 260px;
        padding: 0.75rem 0.625rem;
        gap: 0.3rem;
        border-radius: 20px;
    }
    
    .billing-option {
        font-size: 0.75rem;
    }
    
    .toggle-switch {
        width: 38px;
        height: 19px;
    }
    
    .toggle-label:before {
        height: 13px;
        width: 13px;
        left: 3px;
        bottom: 3px;
    }
    
    .toggle-input:checked + .toggle-label:before {
        transform: translateX(19px);
    }
    
    .discount-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.25rem;
    }
}
