/* RESET & BASE STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; scroll-behavior: smooth; }

body { 
    background-color: #0b0f19; 
    background-image: 
        linear-gradient(rgba(255, 159, 67, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 159, 67, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 20%, #1a233d 0%, #0b0f19 70%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    background-attachment: fixed;
    color: #ffffff; 
    text-align: center; 
}

/* FIXED STICKY NAVBAR */
.navbar { background-color: rgba(11, 15, 25, 0.85); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255, 159, 67, 0.3); position: fixed; top: 0; width: 100%; z-index: 1000; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.logo-container { display: flex; align-items: center; gap: 10px; }
.main-logo { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; border: 1.5px solid #ff9f43; box-shadow: 0 0 10px rgba(255, 159, 67, 0.2); }
.logo-text { color: #ff9f43; font-weight: bold; font-size: 24px; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 0 10px rgba(255, 159, 67, 0.2); }
nav ul { list-style: none; display: flex; gap: 15px; }
nav a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 14px; font-weight: bold; transition: 0.3s; }
nav a:hover { color: #ff9f43; }

/* FULL PAGE LAYOUT FOR SCROLLING */
.full-page { padding: 120px 20px 60px 20px; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* PAGE 1: HERO & INSIGHTS */
h1 { font-size: 36px; margin-bottom: 20px; text-transform: uppercase; color: #ffffff; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-text { font-size: 15px; color: #cbd5e1; line-height: 1.7; max-width: 650px; margin: 0 auto 30px auto; text-align: justify; }

/* NEW BRANDED GLOWING INSTAGRAM DM BUTTON */
.instagram-dm-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    color: #ffffff; 
    text-decoration: none; 
    padding: 14px 30px; 
    font-size: 16px; 
    font-weight: bold; 
    text-transform: uppercase; 
    border-radius: 30px; 
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.4); 
    transition: 0.3s ease; 
    margin-bottom: 40px;
}
.instagram-dm-btn:hover { 
    transform: translateY(-3px) scale(1.03); 
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6); 
}
.instagram-dm-btn i { font-size: 20px; }

/* Side-by-Side Screenshots Styling */
.screenshot-container { margin-top: 10px; width: 100%; max-width: 600px; }
.ss-flex { display: flex; gap: 18px; justify-content: center; width: 100%; }
.dual-screenshot { width: 45%; height: auto; border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.6); object-fit: cover; transition: 0.3s; }
.dual-screenshot:hover { transform: translateY(-5px); border-color: rgba(255, 159, 67, 0.4); }
.parent-tag { font-size: 12px; color: #94a3b8; margin-top: 15px; font-style: italic; letter-spacing: 0.5px; }

/* PAGE 2: TESTIMONIAL VIDEOS GRID */
h2 { font-size: 28px; text-transform: uppercase; color: #ff9f43; margin-bottom: 5px; letter-spacing: 1px; }
.section-subtext { font-size: 14px; color: #64748b; margin-bottom: 35px; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 500px; width: 100%; }
.video-card { background: #0f172a; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 25px rgba(0,0,0,0.4); aspect-ratio: 9/16; display: flex; align-items: center; transition: 0.3s; }
.video-card:hover { transform: scale(1.02); border-color: rgba(255, 159, 67, 0.3); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }

/* PAGE 3: QUOTE BANNER */
.quote-container h2 { font-size: 28px; color: #ffffff; font-style: italic; text-transform: none; line-height: 1.6; font-weight: normal; max-width: 550px; padding: 0 25px; border-left: 3px solid #ff9f43; border-right: 3px solid #ff9f43; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

/* PAGE 4: STATS & COMMUNITY */
.stats-content { background: rgba(15, 23, 42, 0.6); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); width: 100%; max-width: 360px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.insta-logo-box { font-size: 65px; color: #ff9f43; margin-bottom: 10px; filter: drop-shadow(0 0 15px rgba(255, 159, 67, 0.4)); }
.counter-number { font-size: 65px; font-weight: bold; color: #ffffff; letter-spacing: -1px; line-height: 1; margin-bottom: 5px; }
#page4 h3 { font-size: 18px; color: #94a3b8; text-transform: uppercase; margin-top: 8px; letter-spacing: 1px; }
.divider { width: 50px; height: 3px; background: #ff9f43; margin: 20px auto; border-radius: 2px; box-shadow: 0 0 8px #ff9f43; }
.footer-note { font-size: 15px; color: #ff9f43; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

/* ANIMATION EFFECT FOR INSTAGRAM LOGO */
@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 159, 67, 0.3)); }
    50% { transform: scale(1.06); color: #ffb366; filter: drop-shadow(0 0 20px rgba(255, 159, 67, 0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 159, 67, 0.3)); }
}
.animation-pulse { animation: pulse 3s infinite ease-in-out; }

/* RESPONSIVE DESIGN FOR IPHONE SCREEN WIDTHS */
@media (max-width: 480px) {
    h1 { font-size: 28px; }
    .hero-text { font-size: 14px; text-align: left; }
    .quote-container h2 { font-size: 22px; }
    .counter-number { font-size: 55px; }
    .ss-flex { gap: 12px; }
    .full-page { padding-top: 100px; }
    .instagram-dm-btn { padding: 12px 24px; font-size: 14px; }
}
