/* ========================================================
   1. SELF-HOSTED FONTS (POPPINS)
======================================================== */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* ========================================================
   2. VARIABLES & BASE RESET
======================================================== */
:root {
    --ig-pink: #1877F2; /* Meta Blue */
    --ig-purple: #155BD5; /* hover / active */
    --ig-orange: #5AA7FF; /* accents */
    --dark: #0f172a;
    --gray: #64748b;
    --bg-light: #f8fafc;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: #f8fafc;
}

body {
    background:
        radial-gradient(800px 400px at 10% -10%, #eef2ff, transparent),
        radial-gradient(800px 400px at 90% 10%, #e0e7ff, transparent),
        var(--bg-light);
}

input, textarea {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

button, .ig-action-btn, .demo-cta-glow, a {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ========================================================
   3. GLOBAL UTILITIES & ICONS
======================================================== */
.svg-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

svg.icon { 
    width: 1.2em; 
    height: 1.2em; 
    fill: currentColor; 
    vertical-align: text-bottom;
    transition: fill 0.3s ease;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--ig-pink), var(--ig-purple));
}


.icon-wrap .svg-icon { font-size: 20px; }
.demo-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--ig-pink);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-block;
}


.section { margin-top: 80px; text-align: center; }
.section h2 { font-size: 36px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; }
.section h2 span { color: var(--ig-pink); }
.section-sub { max-width: 680px; margin: 0 auto 40px; font-size: 16px; color: var(--gray); }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.reveal.show { opacity: 1; transform: translateY(0); }



/* ========================================================
   4. HEADER & NAVIGATION
======================================================== */
header {
    width: 100%;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #f1f5f9;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand img { height: 35px; width: auto; }

.desktop-nav { display: flex; gap: 25px; align-items: center; }
/* --- DESKTOP NAV FIX (Match Mobile Login Weight) --- */
.desktop-nav a {
    text-decoration: none;
    color: #0f172a; /* Exact same dark color as mobile login */
    font-weight: 600; /* Exact same weight as mobile login */
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a:hover {
    color: #1877F2; /* Pink/Blue Hover */
}

/* Active State Design */
.desktop-nav a.active {
    color: #1877F2;
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Text ke thoda niche */
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #1877F2;
    border-radius: 2px;
}

/* Buttons */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 19px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ig-pink), var(--ig-purple));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21, 91, 213, 0.2); }

/* Mobile Nav Elements */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}
.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav-dropdown{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .3s ease;
  z-index:100;
  overflow:hidden;
}

.mobile-nav-dropdown.open{
  transform:scaleY(1);
}
.mobile-links { display: flex; flex-direction: column; padding: 10px 20px; }
.mobile-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}
.mobile-links a:hover { background-color: #f1f5f9; color: #2563eb !important; }

@media(max-width:900px) {
    .hamburger { display: flex; }
    .desktop-nav { display: none !important; }
    .header-inner .auth-buttons a.login-link { display: none; }
    .header-inner .login-btn { display: flex; padding: 6px 14px; font-size: 13px; margin-right: 15px; }
    .header-right { display: flex; align-items: center; }
}

/* ========================================================
   5. HERO SECTION & FLOW CARD
======================================================== */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 20px;
    min-height: 550px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0 0 15px;
    max-width: 850px;
}
.hero h1 span { color: #1877F2; display: inline; }
.hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.6;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ig-pink), var(--ig-purple));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: .35s ease;
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.2);
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(24, 119, 242, 0.3); }

.hero-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .1);
    border: 1px solid #e5e7eb;
    min-height: auto;
}

.flow { display: flex; flex-direction: column; gap: 18px; }
.flow div { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 16px 20px; font-size: 15px; color: #475569; border: 1px solid #f1f5f9; box-shadow: 0 4px 10px rgba(0,0,0,.02); animation: stepGlow 8s infinite; }
.flow .svg-icon { font-size: 18px; color: #cbd5e1; animation: iconGlow 8s infinite; }

.flow div:nth-child(1), .flow div:nth-child(1) .svg-icon { animation-delay: 0s; }
.flow div:nth-child(2), .flow div:nth-child(2) .svg-icon { animation-delay: 2s; }
.flow div:nth-child(3), .flow div:nth-child(3) .svg-icon { animation-delay: 4s; }
.flow div:nth-child(4), .flow div:nth-child(4) .svg-icon { animation-delay: 6s; }

@keyframes stepGlow {
    0%, 20% { background: #eff6ff; color: #0f172a; border-color: #93c5fd; transform: scale(1.02) translateX(4px); box-shadow: 0 12px 25px rgba(24,119,242,.15); }
    25%, 100% { background: #fff; color: #475569; border-color: #f1f5f9; transform: none; box-shadow: 0 4px 10px rgba(0,0,0,.02); }
}
@keyframes iconGlow {
    0%, 20% { color: #1877F2; transform: scale(1.05); }
    25%, 100% { color: #cbd5e1; transform: scale(1); }
}
/* Mobile Hero & Flow Fixes */
@media(max-width:900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 30px 20px; min-height: auto; gap: 40px; }
    .hero h1 { text-align: center; font-size: 32px; margin: 0 auto 20px; }
    .hero p { margin: 18px auto 28px; }
    .cta { width: 100%; justify-content: center; }
    
    .hero-card {
        padding: 18px; 
        height: fit-content; 
        min-height: 0;
        max-height: max-content;
        margin: 0 auto; 
        width: 100%;
        max-width: 400px; 
        box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08); 
    }
    .flow { gap: 10px; margin-bottom: 0; }
    .flow div {
        padding: 12px 16px; 
        gap: 10px; 
        font-size: 13.5px; 
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
    }
    .flow .svg-icon { font-size: 18px; flex-shrink: 0; }
}

/* ========================================================
   6. CONTINUOUS AUTO-SCROLL REELS
======================================================== */
#creators.reel-showcase {
    padding-left: 0;
    padding-right: 0;
    margin-left: -20px; 
    margin-right: -20px;
    width: calc(100% + 40px);
}
#creators h2, #creators .section-sub { padding-left: 20px; padding-right: 20px; }

.reel-grid {
    display: flex; 
    align-items: center; 
    gap: 10px;
    max-width: 1200px; 
    margin: 40px auto 0;
    padding: 0px 10px; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    min-height: 450px;
}
.reel-grid::-webkit-scrollbar { display: none; }

.reel-card {
    flex: 0 0 auto; 
    width: 280px; 
    max-width: 85vw; 
    aspect-ratio: 9 / 16; 
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: transparent;
}

.reel-bg { width: 100%; height: 100%; object-fit: cover; opacity: 1; }

.reel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    padding: 15px;
}

.reel-user { display: flex; align-items: center; gap: 10px; }
.reel-user img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; }
.reel-user div strong { color: #fff; font-size: 14px; display: block; line-height: 1.2; }

.reel-followers { display: flex; align-items: center; gap: 5px; color: #e2e8f0; font-size: 12px; margin-top: 3px; }
.reel-followers .svg-icon { font-size: 13px; color: #fff; }

@media (max-width: 600px) {
    .reel-grid { min-height: 320px; }
    .reel-card { width: 180px; border-radius: 16px; }
    .reel-overlay { padding: 12px; }
    .reel-user img { width: 28px; height: 28px; }
    .reel-user div strong { font-size: 12px; }
    .reel-followers { font-size: 10px; gap: 4px; margin-top: 1px; }
    .reel-followers .svg-icon { font-size: 11px; }
}

/* ========================================================
   7. ANALYTICS COUNTERS
======================================================== */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.creator-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.creator-card h3 { font-size: 24px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.creator-card p { font-size: 13px; color: var(--gray); margin: 0; }

/* ========================================================
   8. SLIM FEATURES GRID
======================================================== */
.slim-features { padding: 60px 0; background: #fff; }
.sf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;
    max-width: 1000px; 
    margin: 0 auto;
}

.sf-card {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    padding: 30px 25px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}
.sf-card:hover { background: #fff; border-color: var(--ig-pink); box-shadow: 0 15px 35px rgba(0,0,0,0.05); transform: translateY(-5px); }

.sf-icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px; 
}
.sf-icon .svg-icon { font-size: 24px; color: #fff; }
.sf-icon.blue { background: #3b82f6; }
.sf-icon.pink { background: #ec4899; }
.sf-icon.orange { background: #f97316; }
.sf-icon.teal { background: #14b8a6; }
.sf-icon.green { background: #22c55e; }
.sf-icon.indigo { background: #6366f1; }

.sf-text h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.2; }
.rev-info h3 { font-size: 15px; color: var(--dark); margin: 0 0 2px 0; display: flex; align-items: center; gap: 4px; font-weight: 700; }

@media (max-width: 992px) { .sf-grid { gap: 20px; padding: 0 20px; } }
/* ========================================================
   REPLACE YOUR EXISTING 650px MEDIA QUERY WITH THIS ONE
======================================================== */
@media (max-width: 650px) {
.sf-grid { grid-template-columns: 1fr; gap: 12px; padding: 0 !important; }
.sf-card { flex-direction: row; text-align: left; align-items: center; padding: 16px 15px; width: 100%; box-sizing: border-box; }
.sf-icon { margin-bottom: 0; margin-right: 14px; flex: 0 0 42px; height: 42px; width: 42px; border-radius: 12px; }
.sf-text h4 { font-size: 15px; margin-bottom: 2px; }
.sf-text p { font-size: 13px; line-height: 1.4; }
}

/* ========================================================
   9. REVIEWS & TESTIMONIALS
======================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.review-card { display: flex; flex-direction: column; background: #fff; padding: 24px; border-radius: 24px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(15,23,42,0.03); transition: all 0.3s ease; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(24,119,242,0.08); border-color: #bfdbfe; }
.rev-user { order: 1; display: flex; align-items: center; gap: 12px; border: none; padding: 0; margin-bottom: 16px; }
.rev-user img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; padding: 2.5px; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.rev-info h4 { font-size: 15px; color: var(--dark); margin: 0 0 2px 0; display: flex; align-items: center; gap: 4px; font-weight: 700; }
.rev-info span { font-size: 12px; color: var(--gray); font-weight: 500; }
.rev-text { order: 2; background: #f1f5f9; padding: 18px 20px; border-radius: 4px 20px 20px 20px; font-size: 14.5px; color: #1e293b; line-height: 1.6; font-style: normal; margin: 0 0 16px 0; }
.rev-stars { order: 3; display: flex; gap: 4px; margin-top: auto; padding-left: 4px; }
.rev-stars .star { color: #facc15; font-size: 14px; }
@media (max-width: 768px) { .reviews-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 15px; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; scrollbar-width: none; } .reviews-grid::-webkit-scrollbar { display: none; } .review-card { flex: 0 0 85%; max-width: 320px; scroll-snap-align: center; padding: 20px; } }

/* ========================================================
   10. ADVANCED FEATURES GRID
======================================================== */
.advanced-features { max-width: 1200px; margin: 80px auto; padding: 0 20px; text-align: center; }
.af-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; text-align: left; }
.af-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.af-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(24, 119, 242, 0.08); border-color: #cbd5e1; }

.af-visual { height: 150px; display: flex; align-items: center; justify-content: center; position: relative; }
.af-visual .svg-icon { font-size: 55px; color: #ffffff; opacity: 0.9; transition: transform 0.3s ease; }
.af-card:hover .af-visual .svg-icon { transform: scale(1.1); }

.bg-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.bg-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.bg-green { background: linear-gradient(135deg, #22c55e, #15803d); }
.bg-indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
.bg-gold { background: linear-gradient(135deg, #eab308, #a16207); }

.soon-badge { position: absolute; top: 15px; right: 15px; background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(4px); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.2); }
.af-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.af-content h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.af-content p { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }

@media (max-width: 950px) { .af-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .af-grid { grid-template-columns: 1fr; } .af-visual { height: 120px; } }

/* ========================================================
   11. PROBLEM VS SOLUTION GRID
======================================================== */
.ps-grid { display: flex; flex-direction: column; gap: 30px; max-width: 1000px; margin: 0 auto; }
.ps-card { display: flex; align-items: stretch; background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); transition: 0.3s ease; position: relative; }
.ps-card:hover { box-shadow: 0 15px 40px rgba(24, 119, 242, 0.08); transform: translateY(-3px); }

.ps-problem, .ps-solution { padding: 35px 40px; flex: 1; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.ps-problem { background: #fffcfc; }
.ps-solution { background: #f8fafc; }

.ps-icon { margin-bottom: 16px; }
.ps-icon.red-icon .svg-icon { color: #ef4444; font-size: 28px; }
.ps-icon.blue-icon .svg-icon { color: var(--ig-pink); font-size: 28px; }

.ps-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.ps-card p { font-size: 15px; color: var(--gray); line-height: 1.6; margin: 0; }

.ps-divider { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: #fff; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); box-shadow: 0 4px 10px rgba(0,0,0,0.05); z-index: 2; }
.ps-divider .svg-icon { font-size: 18px; color: var(--gray); }

@media (max-width: 850px) {
.ps-card { flex-direction: column; border-radius: 16px; }
.ps-problem { background: #fff5f5; padding: 24px 20px 32px 20px; border-bottom: 1px solid #fee2e2; }
.ps-solution { background: #eff6ff; padding: 32px 20px 24px 20px; }
.ps-divider { position: relative; top: auto; left: 50%; transform: translateX(-50%) rotate(90deg); margin-top: -20px; margin-bottom: -20px; width: 40px; height: 40px; background: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: 1px solid #e2e8f0; z-index: 5; }
.ps-divider .svg-icon { font-size: 16px; color: #64748b; }
.ps-icon { margin-bottom: 12px; }
.ps-icon.red-icon .svg-icon, .ps-icon.blue-icon .svg-icon { font-size: 24px; }
.ps-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.2; }
.ps-card p { font-size: 14px; line-height: 1.5; }
}

/* ========================================================
   12. FAQ SECTION
======================================================== */
.faq-section { max-width: 800px; margin: 80px auto; text-align: left; }
.faq-section h2, .faq-section .faq-sub { text-align: center; }
.faq-section .faq-sub { margin-bottom: 40px; color: var(--gray); }

.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: .9s; }
.faq-item summary { padding: 20px; font-size: 16px; font-weight: 600; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--ig-pink); font-weight: 400; transition: .3s; }

.faq-item[open] { border-color: var(--ig-pink); box-shadow: 0 4px 15px rgba(24, 119, 242, 0.05); }
.faq-item[open] summary::after { content: '−'; }

.faq-content { padding: 0 20px 20px; font-size: 15px; color: var(--gray); line-height: 1.6; border-top: 1px solid transparent; }
.faq-item[open] .faq-content { border-top-color: #f1f5f9; padding-top: 15px; }


/* ========================================================
   13. PRE-FOOTER CTA & FOOTER
======================================================== */
.pre-footer-cta {
    background: linear-gradient(135deg, #f0f7ff, #e0e7ff);
    border-top: 1px solid #e2e8f0;
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
    min-height: 250px;
}
.pre-footer-cta h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 15px; }
.pre-footer-cta p { font-size: 16px; color: var(--gray); max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }

.fat-footer { background: #ffffff; padding: 60px 20px 30px; border-top: 1px solid #e2e8f0; min-height: 400px; position: relative; overflow: hidden; }
.fat-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }

.footer-brand-col p { font-size: 14px; color: var(--gray); margin-top: 15px; line-height: 1.6; max-width: 280px; }
.footer-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #475569; text-decoration: none; transition: .2s; }
.footer-links a:hover { color: var(--ig-pink); }

.fat-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.fat-footer-social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #f1f5f9; color: var(--dark); transition: .3s; text-decoration: none; }
.fat-footer-social a:hover { background: var(--ig-pink); color: #fff; transform: translateY(-3px); }
.fat-footer-social a .svg-icon { font-size: 16px; }

.fat-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 15px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    padding: 35px 20px;
    font-size: 14px;
    color: #475569;
    position: relative;
    z-index: 2; 
}


.footer-watermark-img {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1; 
    margin-top: -10px; 
    margin-bottom: 10px; 
    pointer-events: none;
    user-select: none;
}
.footer-watermark-img img { width: 65vw; max-width: 900px; opacity: 0.04; filter: grayscale(20%); }

@media(max-width: 900px) {
    .fat-footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
    .pre-footer-cta { padding: 50px 20px; }
}
@media(max-width: 600px) {
    .footer-watermark-img img { width: 85vw; }
    .footer-watermark-img { margin-bottom: 0px; }
    .fat-footer-bottom { padding: 25px 15px; }
}
@media(max-width: 480px) {
    .fat-footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: span 2; }
}