:root {
    --primary: #de0065;
    --primary-hover: #c40058;
    --secondary: #1a0b2e;
    --text-main: #1a1a1a;
    --text-muted: #6b7280;
    --bg-main: #ffffff;
    --bg-off: #f8fafc;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-brand img {
    height: 40px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    background: var(--bg-off);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(222, 0, 101, 0.39);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(222, 0, 101, 0.23);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    gap: 4rem;
    background: radial-gradient(circle at 100% 0%, rgba(222,0,101,0.05) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(26,11,46,0.05) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fdf2f8;
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary), #ff4d94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-actions .btn-outline {
    background: white;
}

.hero-features-inline {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.hero-features-inline span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-features-inline i {
    color: #10b981;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-container {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-phone-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* Optional: filter removed since the image likely already has shadows */
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 280px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.fc-icon.purple { background: #f3e8ff; color: #9333ea; }
.fc-icon.green { background: #dcfce7; color: #16a34a; }
.fc-icon.pink { background: #fce7f3; color: #db2777; }

.fc-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.fc-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.card-1 { top: 10%; right: -50px; animation: float-delayed 7s ease-in-out infinite; }
.card-2 { top: 40%; right: -70px; animation: float 8s ease-in-out infinite; }
.card-3 { top: 70%; right: -30px; animation: float-delayed 6s ease-in-out infinite; }

/* Payment Methods Section */
.methods-section {
    padding: 4rem 5%;
    text-align: center;
    background: #fff;
}

.methods-header {
    margin-bottom: 3rem;
}
.methods-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.methods-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Specific borders on hover */
.card-bkash:hover { box-shadow: 0 15px 30px rgba(226, 19, 110, 0.15); border: 1px solid rgba(226,19,110,0.3); }
.card-nagad:hover { box-shadow: 0 15px 30px rgba(243, 112, 33, 0.15); border: 1px solid rgba(243,112,33,0.3); }
.card-rocket:hover { box-shadow: 0 15px 30px rgba(140, 48, 142, 0.15); border: 1px solid rgba(140,48,142,0.3); }

.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.mc-logo img {
    height: 40px;
}
.mc-brand {
    font-size: 1.25rem;
    font-weight: 700;
}
.brand-bkash { color: #e2136e; }
.brand-nagad { color: #f37021; }
.brand-rocket { color: #8c308e; }

.mc-features {
    list-style: none;
    margin-bottom: 2rem;
}
.mc-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}
.mc-features li i {
    color: var(--primary);
    font-size: 1rem;
}
.brand-nagad-i { color: #f37021 !important; }
.brand-rocket-i { color: #8c308e !important; }

.mc-rates {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.rate-box {
    flex: 1;
    background: var(--bg-off);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}
.rate-box span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.rate-box strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}
.rate-bkash strong { color: #e2136e; }
.rate-nagad strong { color: #f37021; }
.rate-rocket strong { color: #8c308e; }
.rate-box small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mc-action .btn {
    width: 100%;
}
.btn-bkash { border-color: #e2136e; color: #e2136e; }
.btn-bkash:hover { background: #e2136e; color: white; }
.btn-nagad { border-color: #f37021; color: #f37021; }
.btn-nagad:hover { background: #f37021; color: white; }
.btn-rocket { border-color: #8c308e; color: #8c308e; }
.btn-rocket:hover { background: #8c308e; color: white; }

.methods-disclaimer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    padding: 3rem 5%;
    margin: 2rem 5%;
    background: linear-gradient(135deg, #f8f6fb, #fdf2f8);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
}
.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.cta-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.cta-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Trusted By */
.trusted-by {
    text-align: center;
    padding: 2rem 5%;
    border-top: 1px solid var(--border-color);
}
.trusted-by p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.trusted-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.trusted-logos img {
    height: 30px;
    object-fit: contain;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 0.85rem;
    color: #a78bfa;
    line-height: 1.6;
}
.footer-col h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.75rem;
}
.footer-col ul li a {
    color: #a78bfa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: white;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a78bfa;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s;
}
.footer-social a:hover {
    background: var(--primary);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
@keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-features-inline { justify-content: center; }
    .methods-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section { flex-wrap: wrap; justify-content: center; gap: 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-card { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .methods-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; }
}
