/* Reset & Base - Same as other pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; line-height: 1.6; color: #333; background-color: #FFFFFFE5; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; }

/* Navigation - Same as other pages */
.navbar {
    background: #1a1a1a;
    border-radius: 50px;
    padding: 16px 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 30px auto 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1000;
}

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

.logo {
    color: white;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img { height: 28px; width: auto; }
.logo i { color: #FFD700; font-size: 0.8rem; }

.nav-buttons { display: flex; gap: 12px; }

.nav-btn {
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.2px;
}

.nav-btn.customers {
    background: linear-gradient(135deg, #F5C518 0%, #F5D518 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(245, 197, 24, 0.25);
}

.nav-btn.customers:hover {
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
    transform: translateY(-2px);
}

.nav-btn.business {
    background: linear-gradient(135deg, #6C5CE7 0%, #7C6CF7 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.25);
}

.nav-btn.business:hover {
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

.nav-btn.developers {
    background: linear-gradient(135deg, #7C6CF7 0%, #8C7CFF 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(124, 108, 247, 0.25);
}

.nav-btn.developers:hover {
    box-shadow: 0 6px 20px rgba(124, 108, 247, 0.4);
    transform: translateY(-2px);
}

.nav-btn:hover { transform: translateY(-2px); }

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: #2d2d2d; padding: 1rem; z-index: 999; flex-direction: column; gap: 0.5rem; }
.mobile-menu.active { display: flex; }

/* Sidebar Menu (Mobile) */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header .logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.sidebar-close:hover {
    transform: rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-nav .nav-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.sidebar-nav .nav-btn.customers {
    background: #F5C518;
    color: #000;
}

.sidebar-nav .nav-btn.business {
    background: #6C5CE7;
    color: white;
}

.sidebar-nav .nav-btn.developers {
    background: #7C6CF7;
    color: white;
}

.sidebar-nav .nav-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hide sidebar on desktop */
@media (min-width: 769px) {
    .sidebar-menu,
    .sidebar-overlay {
        display: none !important;
    }
}

/* About Hero Section */
.about-hero { margin-top: 70px; min-height: 500px; background: #f5f5f5; position: relative; overflow: hidden; padding: 3rem 2rem; }
.hero-decorations { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.deco-block { position: absolute; opacity: 0.85; }
.deco-1 { width: 150px; height: 150px; background: #FFD700; top: -5%; left: 0; }
.deco-2 { width: 180px; height: 180px; background: #DC143C; top: -3%; left: 12%; }
.deco-3 { width: 130px; height: 130px; background: #00A86B; top: 0; left: 28%; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 80%); }
.deco-4 { width: 120px; height: 150px; background: #FFD700; top: 5%; left: 42%; }
.deco-5 { width: 160px; height: 160px; background: #DC143C; top: -5%; left: 56%; }
.deco-6 { width: 140px; height: 140px; background: #00A86B; top: 0; left: 72%; clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%); }
.deco-pattern { position: absolute; opacity: 0.6; }
.pattern-1 { width: 100px; height: 80px; background: repeating-linear-gradient(0deg, #1a1a1a, #1a1a1a 3px, #FFD700 3px, #FFD700 7px); top: 8%; left: 35%; }
.pattern-2 { width: 120px; height: 120px; background: repeating-linear-gradient(45deg, #FF6B00, #FF6B00 4px, transparent 4px, transparent 10px); bottom: 20%; left: 15%; }

.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-text-box { background: #e8e8e8; padding: 2.5rem 3rem; border-radius: 20px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); margin-bottom: 2rem; }
.hero-text-box h1 { font-size: 2.5rem; font-weight: 700; color: #1a1a1a; }
.btn-get-started { padding: 1rem 2.5rem; background: #FFD700; color: #1a1a1a; border-radius: 30px; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; }
.btn-get-started:hover { background: #FFC700; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }

.hero-images { position: absolute; top: 10%; right: 5%; display: flex; gap: 1.5rem; z-index: 1; }
.hero-img { width: 200px; height: auto; border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }

/* About Content Section */
.about-content { padding: 5rem 2rem; background: #ffffff; }
.content-wrapper { max-width: 1200px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.content-block { background: #f9f9f9; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); }
.content-block h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: #1a1a1a; }
.content-block p { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 1rem; }

/* What We Offer Section */
.offer-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; align-items: center; }
.offer-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: #1a1a1a; }
.offer-text p { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 1.5rem; }
.services-list { list-style: none; padding: 0; }
.services-list li { padding: 0.8rem 0; border-bottom: 1px solid #eee; }
.services-list li:last-child { border-bottom: none; }
.services-list strong { color: #1a1a1a; font-weight: 600; }

.offer-image { position: relative; }
.offer-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); }
.image-decorations { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.img-deco { position: absolute; border-radius: 50%; }
.img-deco-1 { width: 120px; height: 120px; background: linear-gradient(135deg, #FF006E 0%, #FF1493 100%); top: -5%; right: -5%; opacity: 0.8; }
.img-deco-2 { width: 100px; height: 100px; background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); bottom: -5%; left: -5%; opacity: 0.8; }
.img-deco-3 { width: 80px; height: 80px; background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); top: 40%; left: -3%; opacity: 0.85; }
.img-pattern { position: absolute; width: 90px; height: 90px; background: repeating-linear-gradient(45deg, #00FF85, #00FF85 4px, transparent 4px, transparent 10px); bottom: 10%; right: 5%; opacity: 0.5; }

.values-list { list-style: none; padding: 0; }
.values-list li { padding: 1rem 0; border-bottom: 1px solid #eee; }
.values-list li:last-child { border-bottom: none; }
.values-list strong { color: #1a1a1a; font-weight: 600; display: block; margin-bottom: 0.3rem; }

.highlight-text { font-weight: 600; color: #1a1a1a; margin-top: 1.5rem; }

/* Download Section - Same as other pages */
.download-section { padding: 4rem 2rem; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); border-radius: 30px; margin: 3rem 2rem; }
.download-container { max-width: 900px; margin: 0 auto; text-align: center; }
.download-container h2 { font-size: 2.2rem; font-weight: 700; color: #ffffff; margin-bottom: 1rem; }
.download-container p { font-size: 1rem; color: #cccccc; line-height: 1.8; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.download-buttons { display: flex; justify-content: center; gap: 1.5rem; }
.store-btn { display: flex; align-items: center; gap: 1rem; background: #ffffff; color: #1a1a1a; padding: 0.8rem 1.5rem; border-radius: 10px; transition: all 0.3s ease; }
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2); }
.store-btn i { font-size: 2rem; }
.store-btn div { display: flex; flex-direction: column; align-items: flex-start; }
.store-btn .small { font-size: 0.7rem; color: #666; }
.store-btn .large { font-size: 1rem; font-weight: 600; }

/* Footer - Same as other pages */
.footer { padding: 4rem 2rem 2rem; background: #f9f9f9; }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #1a1a1a; }
.footer-logo-img { height: 30px; width: auto; }
.footer-logo i { color: #FFD700; font-size: 1rem; }
.footer-col h3, .footer-col h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; color: #1a1a1a; }
.footer-col p { font-size: 0.9rem; color: #666; margin-bottom: 1.5rem; line-height: 1.6; }
.subscribe-form { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.subscribe-form input { flex: 1; padding: 0.8rem 1rem; border: 1px solid #ddd; border-radius: 8px; font-size: 0.9rem; font-family: inherit; }
.subscribe-form button { padding: 0.8rem 1.5rem; background: #1a1a1a; color: #ffffff; border-radius: 8px; font-weight: 600; transition: all 0.3s ease; }
.subscribe-form button:hover { background: #333; }
.privacy-text { font-size: 0.75rem; color: #999; }
.privacy-text a { color: #3B82F6; text-decoration: underline; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: #666; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: #1a1a1a; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid #ddd; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: #666; font-size: 0.9rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 35px; height: 35px; background: #1a1a1a; color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-links a:hover { background: #FFD700; color: #1a1a1a; transform: translateY(-3px); }

/* Modal - Same as other pages */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 10000; overflow-y: auto; backdrop-filter: blur(5px); }
.modal-overlay.active { display: flex; align-items: center; justify-content: center; padding: 2rem; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-container { position: relative; max-width: 700px; width: 100%; background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3); animation: slideUp 0.4s ease-out; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.9); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; z-index: 10; transition: all 0.3s ease; }
.modal-close:hover { background: #ffffff; transform: rotate(90deg); }
.modal-close i { color: #1a1a1a; }
.modal-content { position: relative; min-height: 600px; }
.modal-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.modal-deco { position: absolute; border-radius: 50%; opacity: 0.8; }
.modal-deco-1 { width: 180px; height: 180px; background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); top: 5%; left: -5%; clip-path: polygon(0 0, 100% 20%, 80% 100%, 0 80%); }
.modal-deco-2 { width: 200px; height: 200px; background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%); top: -10%; right: 10%; }
.modal-deco-3 { width: 150px; height: 150px; background: linear-gradient(135deg, #FF006E 0%, #FF1493 100%); bottom: 10%; right: -5%; opacity: 0.6; }
.modal-deco-4 { width: 120px; height: 120px; background: linear-gradient(135deg, #00F5A0 0%, #00D9F5 100%); bottom: 15%; left: 5%; clip-path: polygon(20% 0, 100% 20%, 80% 100%, 0 80%); opacity: 0.7; }
.modal-pattern { position: absolute; opacity: 0.4; }
.modal-pattern-1 { width: 100px; height: 80px; background: repeating-linear-gradient(0deg, #1a1a1a, #1a1a1a 3px, transparent 3px, transparent 8px); top: 10%; left: 2%; }
.modal-pattern-2 { width: 80px; height: 100px; background: repeating-linear-gradient(45deg, #FFD700, #FFD700 4px, transparent 4px, transparent 10px); bottom: 5%; right: 5%; }
.modal-pattern-3 { width: 60px; height: 60px; background: radial-gradient(circle, #FF1493 2px, transparent 2px); background-size: 15px 15px; top: 40%; right: 8%; }
.modal-form-wrapper { position: relative; z-index: 2; padding: 3rem 2.5rem; }
.get-started-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; gap: 1rem; }
.form-row-toggle { display: flex; gap: 1rem; margin-bottom: 0.5rem; }
.toggle-option { flex: 1; cursor: pointer; }
.toggle-option input[type="radio"] { display: none; }
.toggle-label { display: block; padding: 0.8rem 1.5rem; background: #1a1a1a; color: #ffffff; border-radius: 25px; text-align: center; font-weight: 500; font-size: 0.9rem; transition: all 0.3s ease; }
.toggle-option input[type="radio"]:checked + .toggle-label { background: #FFD700; color: #1a1a1a; transform: scale(1.05); }
.toggle-label:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.get-started-form .form-group { display: flex; flex-direction: column; }
.get-started-form .form-group input { padding: 1rem 1.5rem; background: #1a1a1a; color: #ffffff; border: none; border-radius: 25px; font-size: 0.95rem; font-family: inherit; transition: all 0.3s ease; }
.get-started-form .form-group input::placeholder { color: #999; }
.get-started-form .form-group input:focus { outline: none; background: #2d2d2d; box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3); }
.modal-submit-btn { padding: 1rem 3rem; background: #FFD700; color: #1a1a1a; border: none; border-radius: 30px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; margin-top: 1rem; width: fit-content; align-self: flex-start; }
.modal-submit-btn:hover { background: #FFC700; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
.modal-submit-btn:active { transform: translateY(-1px); }

/* Responsive */
@media (max-width: 1024px) {
    .content-grid, .offer-section { grid-template-columns: 1fr; }
    .hero-images { display: none; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-buttons { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-text-box h1 { font-size: 2rem; }
    .content-block h2 { font-size: 1.6rem; }
    .download-buttons { flex-direction: column; align-items: center; }
    .store-btn { width: 100%; max-width: 250px; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .form-row-double { grid-template-columns: 1fr; }
    .deco-block, .deco-pattern { opacity: 0.4; }
}
@media (max-width: 480px) {
    .navbar { padding: 1rem; }
    .about-hero { padding: 2rem 1rem; }
    .hero-text-box { padding: 2rem 1.5rem; }
    .hero-text-box h1 { font-size: 1.75rem; }
    .about-content { padding: 3rem 1rem; }
    .content-block { padding: 2rem 1.5rem; }
    .download-section { margin: 2rem 1rem; padding: 3rem 1.5rem; }
    .download-container h2 { font-size: 1.75rem; }
    .footer { padding: 3rem 1rem 1.5rem; }
    .modal-submit-btn { width: 100%; }
    .form-row-toggle { flex-direction: column; }
}
