/* ============================================
   NEURODANCE — STYLES
   Dark theme, modern, conversion-focused
============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #e8e8ec;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(232, 121, 249, 0.15));
    padding: 0 0.3em;
    border-radius: 4px;
    color: #fff;
}

.section {
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 850px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    color: #0a0a0f;
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(167, 139, 250, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: #e8e8ec;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    color: #0a0a0f;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0);
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa, #e879f9);
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    color: #b8b8c0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

/* HERO */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.15) 0%, rgba(167, 139, 250, 0) 60%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: #c8b8ff;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 8px #a78bfa;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #b8b8c0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888894;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-icon {
    font-size: 1.1rem;
}

/* PROBLEM */
.problem {
    background: #0d0d14;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(167, 139, 250, 0.2);
    transform: translateY(-4px);
}

.problem-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(167, 139, 250, 0.3);
    margin-bottom: 1rem;
    line-height: 1;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.problem-card p {
    color: #a0a0a8;
    font-size: 0.95rem;
}

/* SOLUTION INTRO */
.solution-intro {
    text-align: center;
}

.solution-lead {
    font-size: 1.2rem;
    color: #c8c8d0;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* WHAT'S INSIDE */
.what {
    background: #0d0d14;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.what-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.what-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
}

.what-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #a78bfa;
    margin-bottom: 0.75rem;
}

.what-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(167, 139, 250, 0.15);
    color: #c8b8ff;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.what-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.what-meta {
    font-size: 0.85rem;
    color: #888894;
    margin-bottom: 1.5rem;
}

.what-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.what-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #c8c8d0;
    font-size: 0.95rem;
}

.what-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: 700;
}

/* PROOF */
.proof {
    text-align: center;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.proof-stat {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.proof-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    color: #a0a0a8;
}

.proof-caveat {
    max-width: 700px;
    margin: 0 auto;
    color: #888894;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
}

/* DIFFERENTIATION */
.diff {
    background: #0d0d14;
}

.diff-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.diff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.diff-other, .diff-us {
    padding: 1.5rem 2rem;
    border-radius: 14px;
}

.diff-other {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.diff-us {
    background: rgba(167, 139, 250, 0.06);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.diff-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.diff-other .diff-label {
    color: #666670;
}

.diff-us .diff-label {
    color: #a78bfa;
}

.diff-row p {
    color: #c8c8d0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* PRICING */
.pricing {
    text-align: center;
    padding-bottom: 8rem;
}

.pricing-card {
    max-width: 540px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(232, 121, 249, 0.04));
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 28px;
    text-align: left;
    position: relative;
    box-shadow: 0 32px 64px rgba(167, 139, 250, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #a78bfa, #e879f9);
    color: #0a0a0f;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.pricing-prices {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.pricing-old {
    font-size: 1.5rem;
    color: #666670;
    text-decoration: line-through;
}

.pricing-now {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-currency {
    font-size: 1rem;
    color: #888894;
}

.pricing-meta {
    font-size: 0.9rem;
    color: #a0a0a8;
    margin-bottom: 2rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #c8c8d0;
    font-size: 0.95rem;
}

.check {
    color: #a78bfa;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-trust {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888894;
}

.pricing-urgency {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(232, 121, 249, 0.06);
    border: 1px solid rgba(232, 121, 249, 0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #d8b8e8;
    text-align: center;
    line-height: 1.5;
}

.pricing-urgency strong {
    color: #fff;
}

/* FAQ */
.faq {
    background: #0d0d14;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item[open] {
    background: rgba(167, 139, 250, 0.04);
    border-color: rgba(167, 139, 250, 0.2);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    list-style: none;
    padding-right: 3rem;
    font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #a78bfa;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #b8b8c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #14101e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.final-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-sub {
    font-size: 1.15rem;
    color: #b8b8c0;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.final-meta {
    font-size: 0.85rem;
    color: #888894;
    margin-top: 1.5rem;
}

/* FOOTER */
.footer {
    background: #050508;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-tagline {
    color: #888894;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 320px;
}

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

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8b8ff;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: #888894;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #666670;
}

/* HERO TITLE SUB */
.hero-title-sub {
    display: block;
    font-size: 0.6em;
    font-weight: 600;
    color: #b8b8c0;
    margin-top: 0.5rem;
    letter-spacing: -0.01em;
}

/* HERO SHOWCASE */
.hero-showcase {
    margin: 4rem auto 3rem;
    max-width: 1100px;
}

.hero-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-card {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.hero-card-1 { transform: rotate(-3deg); }
.hero-card-2 { transform: scale(1.05); z-index: 2; }
.hero-card-3 { transform: rotate(3deg); }

.hero-showcase-caption {
    text-align: center;
    color: #b8b8c0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* METRICS STRIP */
.metrics-strip {
    padding: 3rem 0;
    background: linear-gradient(180deg, #0d0d14 0%, #14101e 50%, #0d0d14 100%);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric {
    padding: 1rem;
}

.metric-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #a0a0a8;
    letter-spacing: 0.02em;
}

/* PROBLEM CONCLUSION */
.problem-conclusion {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: rgba(167, 139, 250, 0.06);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
}

.problem-conclusion p {
    font-size: 1.15rem;
    color: #e8e8ec;
    line-height: 1.6;
}

/* SOLUTION / BEFORE-AFTER */
.section-sub {
    font-size: 1.1rem;
    color: #b8b8c0;
    max-width: 700px;
    margin: 1rem 0 0;
    line-height: 1.55;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.ba-side {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.ba-before {
    border-color: rgba(255, 60, 60, 0.15);
    background: rgba(255, 60, 60, 0.02);
}

.ba-after {
    border-color: rgba(167, 139, 250, 0.25);
    background: rgba(167, 139, 250, 0.04);
}

.ba-label {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 60, 60, 0.15);
    color: #ff8888;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.ba-label-after {
    background: rgba(167, 139, 250, 0.2);
    color: #c8b8ff;
}

.ba-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.ba-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ba-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #c8c8d0;
    font-size: 0.95rem;
}

.ba-before .ba-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6868;
    font-weight: 700;
}

.ba-after .ba-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: 700;
}

.ba-arrow {
    font-size: 3rem;
    color: #a78bfa;
    font-weight: 300;
    line-height: 1;
}

/* WHAT CARDS - extra */
.what-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.what-value {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(167, 139, 250, 0.15);
    font-size: 0.85rem;
    color: #a78bfa;
    font-style: italic;
}

.what-total {
    max-width: 480px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(232, 121, 249, 0.04));
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 20px;
}

.what-total-label {
    font-size: 0.85rem;
    color: #a0a0a8;
    margin-bottom: 0.5rem;
}

.what-total-strike {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #666670;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.what-total-arrow {
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 0.5rem;
}

.what-total-now {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.what-total-meta {
    color: #b8b8c0;
    font-size: 0.9rem;
}

/* PROOF SHOWCASE */
.proof-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.proof-showcase img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* TESTIMONIALS */
.testimonials {
    background: #0d0d14;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: #d8d8e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(167, 139, 250, 0.3);
}

.testimonial-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: #888894;
}

/* FOUNDER */
.founder {
    padding: 6rem 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founder-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(167, 139, 250, 0.25);
    box-shadow: 0 24px 64px rgba(167, 139, 250, 0.15);
}

.founder-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.founder-content p {
    color: #c8c8d0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.founder-signature {
    margin-top: 1.5rem;
    color: #a78bfa;
    font-style: italic;
    font-size: 0.9rem;
}

/* GUARANTEE */
.guarantee {
    padding: 4rem 0;
    background: #0d0d14;
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(232, 121, 249, 0.04));
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 20px;
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 1.5rem;
}

.guarantee-content p {
    color: #c8c8d0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* PRICING IMAGE */
.pricing-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        display: none;
    }

    .nav-link.btn-nav {
        display: inline-flex;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

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

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

    .diff-row {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-now {
        font-size: 3rem;
    }

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

    /* Mobile responsive for new sections */
    .hero-showcase-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .hero-card-1, .hero-card-2, .hero-card-3 { transform: none !important; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .ba-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
    .proof-showcase { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .founder-image { max-width: 280px; margin: 0 auto; }
    .guarantee-card { flex-direction: column; text-align: center; padding: 2rem; }
}
