/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.7;
    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
   =================================== */
.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;
}

.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;
}

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

.nav-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-btn.customers {
    background:#6155f5;
    color: white;
}

.nav-btn.customers:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.nav-btn.business {
    background: #6155f5;
    color: #ffffff;
}

.nav-btn.business:hover {
    background: #6155f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 247, 1, 0.35);
}

.nav-btn.developers {
    background: #6155f5;
    color: white;
}

.nav-btn.developers:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.35);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: white;
    font-size: 24px;
    padding: 8px;
    border: none;
    cursor: pointer;
}

/* Sidebar Menu for Mobile */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: #1a1a1a;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

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

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

.sidebar-close {
    background: transparent;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

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

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

.sidebar-nav .nav-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
}

/* ===================================
   Policy Hero Section
   =================================== */
./* ===================================
   Hero Section - New Design
   =================================== */
.hero {
    margin-top: 0;
    min-height: 500px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Decorative color blocks at the top */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    display: flex;
    z-index: 1;
}

.deco-block {
    flex: 1;
    height: 100%;
}

.deco-1 {
    background: #FFD700;
}

.deco-2 {
    background: #DC143C;
}

.deco-3 {
    background: #00FF85;
}

.deco-4 {
    background: #FFD700;
}

.deco-5 {
    background: #DC143C;
}

.deco-6 {
    background: #00FF85;
}

.deco-7 {
    background: #FFD700;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 500px;
    padding: 3rem 2rem;
    z-index: 2;
}

/* Left content area */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    background: #e8e8e8;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Right side images */
.hero-images {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 3;
}

.hero-img {
    height: 350px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.hero-img-1 {
    margin-top: -20px;
}

.hero-img-2 {
    margin-top: 20px;
}

/* Bitcoin logo in center (if you want to keep it) */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bitcoin-logo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F7931A 0%, #FF9500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(247, 147, 26, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

/* Hide old hero elements */
.hero-image,
.crypto-icons,
.color-block,
.focus-badge,
.income-card {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-images {
        right: 2%;
        gap: 1rem;
    }
    
    .hero-img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-decorations {
        height: 150px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 2rem 1rem;
        min-height: 400px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-images {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .hero-img {
        height: 220px;
    }
}
/* ===================================
   Policy Content
   =================================== */
.policy-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-text {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.policy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.policy-text ul,
.policy-text ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.policy-text a {
    color: #3B82F6;
    text-decoration: underline;
}

.policy-text a:hover {
    color: #2563EB;
}

/* ===================================
   Download Section
   =================================== */
.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;
}

.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
   =================================== */
.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);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-images {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 14px 30px;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .policy-text {
        padding: 2rem 1.5rem;
    }

    .policy-text h2 {
        font-size: 1.5rem;
    }

    .policy-text h3 {
        font-size: 1.2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 250px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .deco-block {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 20px;
        border-radius: 40px;
    }

    .logo {
        font-size: 20px;
    }

    .policy-hero {
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .policy-text {
        padding: 1.5rem 1rem;
    }

    .download-section {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }

    .download-container h2 {
        font-size: 1.75rem;
    }

    .footer {
        padding: 3rem 1rem 1.5rem;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-text {
    animation: fadeIn 0.6s ease-out;
}

button,
a {
    transition: all 0.3s ease;
}
