/* ========================================
   APPLE/FRAMER STYLE - CLEAN UI
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --blue: #3b82f6;
    --blue-glow: rgba(59, 130, 246, 0.15);
    --green: #22c55e;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--white);
}

h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

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

.logo-script {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
}

.logo-img {
    height: 150px;
    width: auto;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .nav { display: none; }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 24px 100px;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right {
    display: none;
}

/* ========================================
   TRUSTED BY
   ======================================== */

.trusted {
    padding: 48px 24px;
}

.trusted-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-item {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.trusted-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.trusted-logo:hover {
    opacity: 1;
}

.trusted-image {
    margin-top: 40px;
    text-align: center;
}

.influencer-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 56px;
}

/* ========================================
   PILLARS (What does Cliptokk do?)
   ======================================== */

.pillars {
    padding: 120px 24px;
}

.pillars .container {
    max-width: 1100px;
}

.pillars-title {
    text-align: center;
    margin-bottom: 64px;
    font-size: clamp(32px, 5vw, 48px);
}

.pillars .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillars-title {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .pillars .container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.pillar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s ease;
}

.pillar:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--blue);
}

.pillar h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pillar p {
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   PIPELINE (How It Works)
   ======================================== */

.pipeline {
    padding: 120px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pipeline .container {
    text-align: center;
}

.pipeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 56px auto 0;
}

@media (max-width: 900px) {
    .pipeline-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pipeline-arrow {
        display: none;
    }
}

.pipeline-step {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pipeline-step:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}

.pipeline-step::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-600);
    font-size: 20px;
}

.pipeline-step:last-child::after {
    display: none;
}

@media (max-width: 900px) {
    .pipeline-step::after {
        display: none;
    }
}

.pipeline-step-final {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, var(--bg) 100%);
    border-color: var(--blue);
}

.pipeline-number {
    width: 40px;
    height: 40px;
    background: var(--blue-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 auto 20px;
}

.pipeline-step h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.pipeline-step p {
    font-size: 14px;
    line-height: 1.5;
}

.pipeline-arrow {
    display: none;
}

.pipeline-note {
    margin-top: 48px;
    padding: 20px 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: inline-block;
}

.pipeline-note p {
    font-size: 16px;
    color: var(--gray-400);
    margin: 0;
}

.pipeline-note strong {
    color: var(--white);
}

/* ========================================
   PROOF / RESULTS
   ======================================== */

.proof {
    padding: 120px 24px;
}

.proof .container {
    text-align: center;
}

.proof h2 {
    margin-bottom: 16px;
}

.proof-intro {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 56px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 64px;
}

@media (max-width: 768px) {
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.proof-stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.proof-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.proof-stat-text {
    font-size: 13px;
    color: var(--gray-500);
}

.proof-subhead {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-explanation {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto 40px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

.artist-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.artist-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.artist-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.artist-thumb span {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-500);
}

.artist-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.artist-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.artist-result {
    font-size: 12px;
    color: var(--green);
    font-weight: 500;
}

.proof-disclaimer {
    font-size: 13px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PRICING
   ======================================== */

.pricings {
    padding: 120px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricings .container {
    text-align: center;
}

.pricings h2 {
    margin-bottom: 12px;
}

.pricing-intro {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 56px;
}

.pricings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

@media (max-width: 900px) {
    .pricings-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.pricing:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: var(--blue);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, var(--bg) 100%);
}

.pricing-elite {
    border-color: var(--blue);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.pricing-postss {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.pricing-potential {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    background: var(--blue-glow);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--gray-400);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 600;
    font-size: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing .btn {
    width: 100%;
    background: var(--white);
    color: var(--bg);
}

.pricing .btn:hover {
    background: var(--gray-200);
}

.pricing-best {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
    text-align: center;
}

.pricings-note {
    font-size: 13px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    padding: 120px 24px;
}

.faq .container {
    max-width: 800px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 56px;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   CTA
   ======================================== */

.cta {
    padding: 120px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    text-align: center;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 48px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 48px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.cta-check {
    color: var(--green);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 24px;
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.4);
}

/* ========================================
   MOBILE RESPONSIVE (iPhone)
   ======================================== */

@media (max-width: 768px) {
    .logo-img {
        height: 80px;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .hero {
        padding: 140px 16px 60px;
        min-height: auto;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .trusted {
        padding: 32px 16px;
    }

    .trusted-logos {
        gap: 20px;
    }

    .trusted-item {
        font-size: 12px;
    }

    .trusted-logo {
        height: 28px;
    }

    .pillars {
        padding: 80px 16px;
    }

    .pillar {
        padding: 28px 24px;
    }

    .pipeline {
        padding: 80px 16px;
    }

    .pipeline-step {
        padding: 24px 20px;
    }

    .proof {
        padding: 80px 16px;
    }

    .pricings {
        padding: 80px 16px;
    }

    .pricing {
        padding: 32px 24px;
    }

    .pricing-price {
        font-size: 40px;
    }

    .faq {
        padding: 80px 16px;
    }

    .faq-item {
        padding: 20px 24px;
    }

    .cta {
        padding: 80px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer {
        padding: 32px 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer .logo-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        min-width: 80px;
    }

    .proof-stat-number {
        font-size: 28px;
    }

    .proof-stat-item {
        padding: 24px 16px;
    }
}
