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

html { overflow-x: hidden; }

body { margin: 0; font-family: 'DM Sans', 'Segoe UI', sans-serif; background-color: #f4f6f8; min-height: 100vh; overflow-x: hidden; }

/* ── Header (nav.js) ── */
header { display: flex; justify-content: space-between; align-items: center; padding: 10px 48px; background: rgba(255,255,255,0.94); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); transition: box-shadow 0.3s ease; min-height: 60px; }
.logo { display: flex; align-items: center; text-decoration: none; transition: opacity 0.2s; }
.logo:hover { opacity: 0.8; }
.logo-svg { height: 40px; width: auto; }
#mainNav ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
#mainNav a { text-decoration: none; font-weight: bold; color: #0059ff; background: white; padding: 12px 24px; border-radius: 10px; border: 2px solid transparent; font-size: 1.08rem; transition: all 0.3s ease; }
#mainNav a:hover, #mainNav a.active { background: linear-gradient(90deg, #8dadec, #0059ff); color: white; border-color: #0059ff; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 10px; z-index: 200; }
.hamburger span { display: block; width: 28px; height: 3px; background: #0059ff; border-radius: 3px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,20,60,0.5); z-index: 150; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-nav { position: fixed; top: 0; right: -320px; width: 300px; height: 100dvh; background: white; z-index: 200; padding: 72px 28px 36px; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: none; display: flex; flex-direction: column; overflow-y: auto; visibility: hidden; }
.mobile-nav.active { right: 0; box-shadow: -8px 0 30px rgba(0,0,0,0.18); visibility: visible; }
.mobile-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 2.2rem; color: #0059ff; cursor: pointer; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 0; }
.mobile-nav ul a { display: block; text-decoration: none; font-weight: bold; color: #0059ff; padding: 16px 20px; border-radius: 12px; font-size: 1.15rem; transition: all 0.2s ease; }
.mobile-nav ul a:hover, .mobile-nav ul a.active { background: #edf3ff; }
.mobile-nav-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid #e2e8f0; }
.mobile-socials { display: flex; gap: 14px; justify-content: center; }
.mobile-socials img { width: 30px; height: 30px; opacity: 0.7; }

/* ═══ MAIN ═══ */
.mainbox { margin: 30px 100px 50px; }

.page-title { text-align: center; margin-bottom: 28px; padding: 28px; background: linear-gradient(90deg, #dce9ff, #c4daff); border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.page-title h1 { color: #1a2a5a; margin: 0 0 8px; font-size: 2.4rem; font-family: 'Playfair Display', Georgia, serif; }
.page-title p { color: #0059ff; margin: 0; font-size: 1.1rem; font-style: italic; }

.partner-intro { background: white; border-radius: 15px; padding: 24px 32px; margin-bottom: 34px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); border-left: 5px solid #0059ff; }
.partner-intro p { color: #3a4a6a; font-size: 1.02em; line-height: 1.75; margin: 0; }

/* ═══ GRID ═══ */
.partners-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 30px; }

/* ═══ CARD ═══ */
.p-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.p-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 16px 44px rgba(0,89,255,0.16);
}

/* ═══ SLIDER — no side arrows, dots only ═══ */
.p-slider { position: relative; width: 100%; aspect-ratio: 4.5/3; overflow: hidden; background: #e8f0ff; cursor: grab; }
.p-slides { width: 100%; height: 100%; position: relative; }
.p-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; }
.p-slide.active { opacity: 1; }
.p-slide img { width: 100%; height: 100%; object-fit: fill; transition: transform 0.4s ease; }
.p-card:hover .p-slide.active img { transform: scale(1.03); }

/* Dots — bottom center */
.sl-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }

/* Side arrows — appear on hover */
.sl-prev, .sl-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border: none; border-radius: 50%;
    background: rgba(255,255,255,0.88); color: #0059ff;
    font-size: 1.4rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 6; transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.14);
    opacity: 0; line-height: 1;
}
.p-card:hover .sl-prev, .p-card:hover .sl-next { opacity: 1; }
.sl-prev:hover, .sl-next:hover { background: #0059ff; color: white; transform: translateY(-50%) scale(1.1); }
.sl-prev { left: 8px; }
.sl-next { right: 8px; }
.sl-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.25s ease; border: none; padding: 0; }
.sl-dot.active { background: white; width: 24px; border-radius: 5px; box-shadow: 0 1px 6px rgba(0,0,0,0.25); }
.sl-dot:hover { background: rgba(255,255,255,0.8); }

/* Contact slide */
.contact-slide { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 30px 26px; background: linear-gradient(135deg, #0059ff 0%, #1a2a5a 100%); color: white; }
.contact-slide h4 { margin: 0 0 20px; font-size: 1.2rem; padding-bottom: 14px; border-bottom: 2px solid rgba(255,255,255,0.2); }
.cs-row { padding: 9px 0; font-size: 0.95rem; line-height: 1.5; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cs-row:last-child { border-bottom: none; }
.cs-label { font-weight: 700; color: #93c5fd; margin-right: 6px; }

/* ═══ CARD INFO — deeper ═══ */
.p-info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 190px;
}
.p-info h3 { color: #0d1f4e; font-size: 1.15em; margin: 0 0 8px; transition: color 0.25s ease; }
.p-card:hover .p-info h3 { color: #0059ff; }

.p-code { font-size: 0.88em; color: #1a2a5a; background: linear-gradient(90deg, #dce9ff, #edf3ff); padding: 6px 12px; border-radius: 8px; margin: 0 0 10px; width: fit-content; }
.p-code strong { color: #0059ff; letter-spacing: 0.06em; }
.p-discount { display: inline-block; font-size: 0.78rem; font-weight: 800; color: white; background: linear-gradient(90deg, #00C244, #00a038); padding: 4px 14px; border-radius: 20px; margin-bottom: 8px; width: fit-content; }
.p-tagline { font-size: 0.83em; color: #0059ff; font-weight: 600; font-style: italic; margin: 0 0 8px; line-height: 1.4; }
.p-info p { color: #4a5568; font-size: 0.9em; line-height: 1.7; margin: 0 0 14px; }

/* ═══ BUTTONS ═══ */
.p-actions { display: flex; gap: 10px; margin-top: auto; align-items: center; }

.p-btn {
    display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none; font-weight: 700; color: #0059ff;
    background: #edf3ff; padding: 10px 20px; border-radius: 10px;
    font-size: 0.88rem; transition: all 0.25s ease;
}
.p-btn:hover { background: linear-gradient(90deg, #8dadec, #0059ff); color: white; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,89,255,0.25); }

.p-btn-contact {
    display: inline-flex; align-items: center;
    background: none; border: 2px solid #0059ff; color: #0059ff;
    padding: 8px 20px; border-radius: 10px; font-size: 0.88rem;
    font-weight: 700; cursor: pointer; transition: all 0.25s ease; font-family: inherit;
}
.p-btn-contact:hover { background: #0059ff; color: white; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,89,255,0.25); }

/* ═══ BECOME A PARTNER ═══ */
.become-partner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
.become-left { background: white; border-radius: 18px; padding: 34px; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.become-left h2 { color: #0d1f4e; font-size: 1.6em; margin: 0 0 14px; font-family: 'Playfair Display', Georgia, serif; }
.become-left > p { color: #3a4a6a; line-height: 1.75; margin: 0 0 20px; font-size: 0.95em; }
.partner-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.partner-benefits li { background: linear-gradient(90deg, #dce9ff, #edf3ff); padding: 12px 18px; border-radius: 10px; color: #1a2a5a; font-size: 0.93em; font-weight: 500; transition: transform 0.2s ease, background 0.3s ease; }
.partner-benefits li:hover { transform: translateX(6px); background: linear-gradient(90deg, #c4daff, #dce9ff); }
.become-right { display: flex; align-items: stretch; }
.cta-box { background: linear-gradient(135deg, #0059ff, #1a2a5a); border-radius: 18px; padding: 38px 34px; color: white; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: 100%; box-shadow: 0 8px 30px rgba(0,89,255,0.3); }
.cta-box h3 { font-size: 1.45em; margin: 0 0 12px; color: white; font-family: 'Playfair Display', Georgia, serif; }
.cta-box p { font-size: 0.93em; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0 0 24px; }
.cta-btn { display: inline-block; text-decoration: none; background: white; color: #0059ff; font-weight: 700; padding: 14px 26px; border-radius: 10px; font-size: 0.95em; transition: all 0.3s ease; }
.cta-btn:hover { background: #dce9ff; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,255,255,0.3); }

/* ═══ FOOTER ═══ */
footer { background: linear-gradient(180deg, #1a2a4a, #0f172a); color: rgba(255,255,255,0.7); padding: 44px 48px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { height: 34px; width: auto; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-style: italic; }
.socials { display: flex; gap: 14px; }
.socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); transition: all 0.25s ease; }
.socials a:hover { background: rgba(0,89,255,0.3); transform: translateY(-2px); }
.socials img { width: 20px; height: 20px; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity 0.2s; }
.socials a:hover img { opacity: 1; }
.cash-app-btn { display: inline-flex; align-items: center; gap: 10px; background: #00C244; color: white; padding: 10px 22px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: all 0.25s ease; }
.cash-app-btn:hover { background: #00a038; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,194,68,0.3); }
.cash-app-btn img { width: 26px; height: 26px; border-radius: 6px; }
.footer-about-link { display: inline-block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; font-weight: 500; margin-bottom: 8px; transition: color 0.2s ease; }
.footer-about-link:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { text-align: center; padding: 18px 0; font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1050px) { .mainbox { margin: 30px 50px 50px; } .partners-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .hamburger { display: flex; } #mainNav { display: none; } header { padding: 8px 20px; } .become-partner { grid-template-columns: 1fr; } .mainbox { margin: 20px 30px 40px; } .footer-inner { flex-direction: column; text-align: center; align-items: center; } }
@media (max-width: 600px) { .mainbox { margin: 15px; } .partners-row { grid-template-columns: 1fr; } .page-title h1 { font-size: 1.8rem; } header { padding: 8px 14px; } footer { padding: 28px 14px 0; } }