/* ============================================
   Stripchat.co.in — Stripchat Affiliate Landing
   Pure black, green CTA, minimal & focused
   ============================================ */

:root {
    --bg: #000000;
    --bg-card: #0d0d0d;
    --bg-surface: #141414;
    --border: rgba(255,255,255,0.08);

    --text: #ffffff;
    --text-dim: #b0b0b0;
    --text-muted: #666666;

    --green: #1db954;
    --green-hover: #1ed760;
    --green-glow: rgba(29,185,84,0.3);

    --red: #e53e3e;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

/* --- Reset --- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 90px;
}

a { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:pointer; font-family:inherit; color:inherit; }

.container { max-width:1100px; margin:0 auto; padding:0 24px; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header.scrolled {
    background: rgba(0,0,0,0.95);
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    font-style: italic;
    color: var(--text);
}

.logo span {
    color: var(--red);
}

.logo-sm {
    font-size: 18px;
}

.btn-go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.btn-go:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--green-glow);
}

/* ============================================
   HERO — Split Layout
   ============================================ */
.hero {
    padding: 120px 32px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

/* Left content */
.hero-left h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero-left h1 em {
    font-style: italic;
    color: var(--green);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Green CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--green);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    box-shadow: 0 4px 24px var(--green-glow);
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-cta:hover {
    background: var(--green-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(29,185,84,0.45);
}

.btn-cta-lg {
    padding: 18px 48px;
    font-size: 18px;
}

@keyframes ctaPulse {
    0%,100% { box-shadow: 0 4px 24px var(--green-glow), 0 0 0 0 var(--green-glow); }
    50% { box-shadow: 0 4px 24px var(--green-glow), 0 0 0 10px rgba(29,185,84,0); }
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acc-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}

.acc-item.open {
    border-color: rgba(29,185,84,0.25);
}

.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.acc-header span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-icon {
    color: var(--green);
    flex-shrink: 0;
}

.acc-header:hover {
    color: var(--green);
}

.acc-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.acc-item.open .acc-arrow {
    transform: rotate(180deg);
    color: var(--green);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.acc-item.open .acc-body {
    max-height: 200px;
}

.acc-body p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============================================
   PHONE MOCKUP
   ============================================ */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-mockup-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
    animation: phoneFloat 5s ease-in-out infinite;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}



/* ============================================
   FEATURES GRID
   ============================================ */
.features {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.feat:hover {
    border-color: rgba(29,185,84,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.feat-icon {
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}

.feat:hover span {
    color: var(--text);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-dim);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================================
   WHY STRIPCHAT INDIA
   ============================================ */
.why-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.why-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.75;
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(29,185,84,0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--green);
}

.faq-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
    padding: 80px 0;
    text-align: center;
}

.bottom-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.bottom-cta p {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 28px;
}

/* ============================================
   STICKY BOTTOM CTA
   ============================================ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1db954 0%, #179b44 100%);
    color: #fff;
    text-align: center;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.5);
    background: linear-gradient(135deg, #20cb5c 0%, #19aa4b 100%);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 28px;
}

.footer-top {
    text-align: center;
    margin-bottom: 24px;
}

.footer-disc {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}



.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-legal a:hover {
    color: var(--text);
}

.footer-bottom-row {
    text-align: center;
    margin-bottom: 16px;
}

.footer-stripchat-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    transition: opacity 0.2s;
}

.footer-stripchat-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-copy-row p {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 6px;
}

.badge {
    padding: 3px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .hero-left {
        display: contents;
    }

    .hero-left h1 { order: 1; margin-bottom: 0; }
    .hero-left .hero-desc { order: 2; margin-bottom: 0; }
    .hero-left .btn-cta { order: 3; margin-bottom: 16px; margin-top: 16px; }
    .hero-right { order: 4; margin: 24px 0; }
    .hero-left .accordion { order: 5; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-container {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .header {
        padding: 14px 16px;
    }

    .logo {
        font-size: 18px;
    }

    .btn-go {
        padding: 8px 18px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-cta-lg {
        padding: 16px 28px;
        font-size: 16px;
    }

    .phone-mockup {
        width: 220px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feat {
        padding: 20px 12px;
    }

    .bottom-cta {
        padding: 56px 0;
    }

    .why-section,
    .faq-section {
        padding: 48px 0;
    }

    .why-grid {
        gap: 12px;
    }

    .why-card {
        padding: 24px 18px;
    }

}
