* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285F4;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4285F4;
    background: rgba(66, 133, 244, 0.1);
}

.login-btn {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    overflow: hidden;
}

.hero-bg {
    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 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

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

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-primary {
    background: white;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* App Screenshot */
.hero-visual {
    position: relative;
    height: 500px;
}

.app-screenshot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.screenshot-img {
    width: 200px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 4s;
}

.card-header {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
}

.card-chart {
    font-size: 2rem;
}

.card-status {
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #f8fafc;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

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

.feature {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.gradient-bg-1 { background: linear-gradient(135deg, #4285F4 0%, #34A853 100%); }
.gradient-bg-2 { background: linear-gradient(135deg, #EA4335 0%, #FBBC04 100%); }
.gradient-bg-3 { background: linear-gradient(135deg, #4285F4 0%, #9C27B0 100%); }
.gradient-bg-4 { background: linear-gradient(135deg, #34A853 0%, #00BCD4 100%); }

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

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

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing */
.pricing-hero {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing {
    padding: 6rem 0;
    background: #f8fafc;
}

.loading {
    text-align: center;
    padding: 4rem;
    font-size: 1.2rem;
    color: #666;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #4285F4;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4285F4;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4285F4;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #4285F4;
}

.period {
    color: #666;
    font-size: 1.2rem;
}

.discount-badge {
    background: #34A853;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0;
    animation: pulse 2s ease-in-out infinite;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f1f5f9;
}

.plan-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #4285F4;
    background: transparent;
    color: #4285F4;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.plan-btn.primary {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    transform: translateY(-2px);
}

.no-plans, .error-message {
    text-align: center;
    padding: 4rem;
    color: #666;
    font-size: 1.1rem;
}

.error-message {
    color: #EA4335;
}

/* Compliance */
.compliance {
    padding: 6rem 0;
    background: white;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact */
.contact-hero {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite reverse;
}

.contact-content {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.response-time {
    font-size: 0.9rem;
    color: #4285F4;
    font-weight: 500;
}

.support-tiers {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier-icon {
    font-size: 1.5rem;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.demo-form {
    margin-top: 1.5rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.demo-btn {
    width: 100%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.security-assurance {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 0;
}

.security-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    justify-content: center;
}

.security-icon {
    font-size: 3rem;
    color: #4285F4;
}

.security-text {
    flex: 1;
    max-width: 600px;
}

.security-badges {
    display: flex;
    gap: 1rem;
}

.security-badge {
    background: #4285F4;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Recharge Page Styles */
.recharge-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 0.5rem;
}

.recharge-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.recharge-header {
    text-align: center;
    margin-bottom: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.recharge-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 0.3rem;
    border-radius: 8px;
}

.recharge-header h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.recharge-header p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.change-plan-btn {
    background: #34A853;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
}

.recharge-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.plan-summary-card {
    border-right: 1px solid #e5e7eb;
    padding-right: 1rem;
}

.plan-summary-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4285F4;
    margin-bottom: 0.3rem;
}

.plan-features {
    margin-bottom: 0.5rem;
}

.feature {
    color: #4b5563;
    margin-bottom: 0.08rem;
    font-size: 0.7rem;
    line-height: 1.1;
    padding: 0.15rem 0;
}

.price-breakdown {
    background: #f8fafc;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.15rem 0;
    font-size: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.discount {
    color: #34A853;
    font-weight: 500;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0 0;
    font-weight: 700;
    font-size: 0.8rem;
    color: #1a1a1a;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.2rem;
}

.payment-form-card {
    padding-left: 1rem;
}

.secure-form .form-group {
    margin-bottom: 1rem;
}

.secure-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.85rem;
}

.mobile-input {
    display: flex;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.mobile-input:focus-within {
    border-color: #4285F4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.1);
    background: white;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: #e5e7eb;
    color: #374151;
    font-weight: 600;
    border-radius: 6px 0 0 6px;
    border-right: 1px solid #d1d5db;
    font-size: 0.85rem;
}

.mobile-input input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    outline: none;
}

.security-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f0f9ff;
    color: #1e40af;
    padding: 0.4rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid #bfdbfe;
    text-align: center;
    justify-content: center;
}

.pay-button {
    width: 100%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.pay-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recharge-header {
        padding: 0.8rem;
    }
    
    .recharge-header h1 {
        font-size: 1rem;
    }
    
    .recharge-header p {
        font-size: 0.75rem;
    }
    
    .change-plan-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .recharge-logo {
        width: 35px;
        height: 35px;
    }
    
    .recharge-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .plan-summary-card {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .payment-form-card {
        padding-left: 0;
    }
    
    .security-info {
        grid-template-columns: 1fr;
    }
    
    .mobile-input {
        flex-direction: column;
    }
    
    .country-code {
        border-radius: 6px 6px 0 0;
        border-right: none;
        border-bottom: 1px solid #d1d5db;
        justify-content: center;
    }
    
    .mobile-input input {
        border-radius: 0 0 6px 6px;
    }
}

@media (max-width: 576px) {
    .recharge-header {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .recharge-header h1 {
        font-size: 0.9rem;
    }
    
    .recharge-header p {
        font-size: 0.7rem;
    }
    
    .change-plan-btn {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .recharge-logo {
        width: 30px;
        height: 30px;
    }
    
    .recharge-content {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .recharge-header {
        padding: 0.5rem;
    }
    
    .recharge-header h1 {
        font-size: 0.85rem;
    }
    
    .recharge-header p {
        font-size: 0.65rem;
    }
    
    .change-plan-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .recharge-logo {
        width: 28px;
        height: 28px;
    }
}
.recharge-form {
    padding: 0;
    text-align: left;
    max-width: 500px;
    width: 100%;
}

.recharge-header {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.recharge-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.recharge-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
}

.plan-summary {
    padding: 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.plan-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.feature-item {
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.price-breakdown {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.breakdown-row.discount {
    color: #34A853;
    font-weight: 500;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
}

.recharge-payment-form {
    padding: 2rem;
}

.mobile-input-group {
    margin-bottom: 1.5rem;
}

.mobile-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.mobile-input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-input-group input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.payment-security {
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f9ff;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.recharge-btn {
    width: 100%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.recharge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.login-form {
    padding: 3rem 2rem;
    text-align: center;
}

.login-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.login-form h2 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.login-form p {
    color: #666;
    margin-bottom: 2rem;
}

.login-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.login-submit {
    width: 100%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.login-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.login-footer a {
    color: #4285F4;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #999;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #4285F4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.compliance-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #999;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-right {
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .login-btn {
        align-self: center;
        width: auto;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .input-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .compliance-badges {
        justify-content: center;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .security-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .modal-content {
        width: 90%;
        margin: 10% auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .login-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature {
        padding: 2rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-hero, .contact-hero {
        padding: 4rem 0;
    }
    
    .pricing-card {
        padding: 2rem 1rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .form-container {
        padding: 2rem 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .login-form {
        padding: 2rem 1rem;
    }
    
    .demo-form input,
    .demo-form select,
    .demo-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .demo-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .security-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .period {
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .plan-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .response-time {
        font-size: 0.8rem;
    }
    
    .demo-form input,
    .demo-form select,
    .demo-form textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .demo-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .link-group h4 {
        font-size: 0.9rem;
    }
    
    .link-group a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Animation Enhancements */
.hero-badge {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature:hover .feature-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}