@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal;
}
@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal;
}
@font-face {
    font-family: 'Instrument Sans Condensed';
    src: url('../fonts/InstrumentSans_Condensed-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal;
}

:root {
    --purple:    #805ad5;
    --purple-dark: #63459e;
    --purple-light: #EDE9FE;
    --purple-mid:  #DDD6FE;
    --bg-white:   #FFFFFF;
    --bg-soft:    #F9F9FB;
    --bg-lavender:  #FAF5FF;
    --text-ink:   #111111;
    --text-muted:  #6B6B7B;
    --text-faint:  #9CA3AF;
    --border:    #E5E7EB;
    --border-purple: rgba(124,58,237,0.25);
    --radius-btn:  12px;
    --radius-card:  20px;
    --radius-video: 18px;
    --max-w:     1100px;
    --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text-ink);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}
.btn-primary:hover, .btn-secondary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 8px rgba(124,58,237,0.20);
}
.btn-primary:active, .btn-secondary:active { transform: translateY(0); }
.btn-primary.large, .btn-secondary.large {
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 14px;
}
.btn-primary.xl, .btn-secondary.xl {
    font-size: 20px;
    padding: 22px 52px;
    border-radius: 16px;
}
.btn-secondary {
    background: white;
    color: black;
    border: 1px solid var(--border-purple);
}
.btn-secondary:hover {
    background: white;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    background: var(--purple-light);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: 68px;
    display: flex;
    align-items: center;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
}
.nav-logo { flex-shrink: 0; }
.nav-cta { flex-shrink: 0; margin-left: auto; }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}
.nav-logo img {
    width: 200px;
    border-radius: 8px;
    display: block;
    flex-shrink: 0;
}

.hero {
    background: var(--bg-white);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    background: var(--purple-light);
    border: 1px solid var(--border-purple);
    padding: 6px 14px;
    border-radius: 99px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-ink);
    max-width: 820px;
    text-wrap: balance;
}
.hero h1 .accent {
    color: var(--purple);
}
.hero-sub {
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 400;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.6;
    text-wrap: balance;
}
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-video-wrap {
    width: 100%;
    max-width: 820px;
    margin-top: 16px;
}
.hero-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-soft);
    border-radius: var(--radius-video);
    border: 2px solid var(--border-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124,58,237,0.10), 0 4px 16px rgba(0,0,0,0.06);
}
.hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(91,30,229,0.02) 100%);
}
.video-play-btn {
    width: 72px; height: 72px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(124,58,237,0.35);
    position: relative;
    z-index: 1;
}
.video-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(124,58,237,0.45);
}
.video-play-btn svg { margin-left: 4px; }
.video-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.section-solution {
    background: #3B0764;
    padding: 100px 0 80px;
    overflow: hidden;
}
.solution-head h2 {
    color: #fff;
}
.solution-head p {
    color: rgba(255,255,255,0.75);
}
.flow-step-label h3 {
    color: #fff;
}
.flow-step-label p {
    color: rgba(255,255,255,0.65);
}
.step-card-mobile h3 {
    color: #fff;
}
.step-card-mobile p {
    color: rgba(255,255,255,0.7);
}
.section-solution .section-label {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.solution-head {
    color: #fff;
}
.section-solution .flow-svg circle[fill="white"] {
    fill: rgba(255,255,255,0.15);
}
.solution-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.solution-head h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--text-ink);
    margin-bottom: 20px;
    text-wrap: balance;
}
.solution-head p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-benefits {
    background: var(--bg-white);
    padding: 100px 0;
}
.benefits-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.benefits-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-ink);
    margin-bottom: 16px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
    border-color: var(--border-purple);
    box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}
.benefit-icon {
    width: 48px; height: 48px;
    background: var(--purple-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.section-cta-mid {
    background: var(--bg-lavender);
    border-top: 1px solid var(--border-purple);
    border-bottom: 1px solid var(--border-purple);
    padding: 100px 0;
}
.cta-mid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 768px) { .cta-mid-inner { grid-template-columns: 1fr; gap: 48px; } }
.cta-mid-left h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-ink);
    margin-bottom: 20px;
    text-wrap: balance;
}
.cta-mid-left h2 .accent { color: var(--purple); }
.cta-mid-left p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.section-faq {
    background: var(--bg-soft);
    padding: 100px 0;
}
.faq-head {
    text-align: center;
    margin-bottom: 56px;
}
.faq-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-ink);
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-ink);
    text-align: left;
    transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-soft); }
.faq-chevron {
    width: 28px; height: 28px;
    min-width: 28px;
    background: var(--purple-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

.section-trial {
    background: #F5F0FF;
    padding: 120px 0;
}
.trial-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}
.trial-head h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-ink);
    margin-bottom: 24px;
    text-wrap: balance;
}
.trial-head p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    text-wrap: balance;
}

.section-team {
    background: var(--bg-soft);
    padding: 100px 0 0;
    overflow: hidden;
}

.team-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.team-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: -0.03em;
}
.team-stat span {
    font-size: 13px;
    color: var(--text-muted);
}

.section-quote {
    background: var(--purple);
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    padding: 80px 0;
}
.quote-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.quote-inner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    text-wrap: balance;
}
.quote-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 620px;
    text-wrap: pretty;
}

.section-final-cta {
    background: var(--purple);
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-final-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.section-final-cta::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.section-final-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    text-wrap: balance;
    max-width: 700px;
}
.section-final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    line-height: 1.65;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--purple);
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(0,0,0,0.2);
}
.final-note {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

footer {
    background: var(--text-ink);
    padding: 48px 0 32px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.footer-logo img {
    width: 180px;
    height: 28px;
    border-radius: 6px;
    display: block;
    flex-shrink: 0;
    object-fit: cover;
}
.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    width: 100%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.section-audience-selector {
    background: var(--bg-soft);
    padding: 64px 0 16px;
}
.audience-selector-head {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 720px;
}
.audience-selector-head h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-ink);
    text-wrap: balance;
    line-height: 1.1;
}

.section-pricing {
    background: var(--bg-soft);
    padding: 100px 0;
}
.pricing-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.pricing-head h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-ink);
    margin-bottom: 20px;
    text-wrap: balance;
}
.pricing-head h2 .accent { color: var(--purple); }
.pricing-head p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}
.pricing-trial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-dark);
    background: var(--purple-light);
    padding: 8px 16px;
    border-radius: 99px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.pricing-grid > .pricing-card:not(.featured) {
    align-self: center;
    height: calc(100% - 80px);
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.pricing-card.sold-out {
    opacity: 0.62;
    background: var(--bg-soft);
    border-style: dashed;
}
.pricing-card.sold-out:hover { transform: none; box-shadow: none; }
.pricing-card.sold-out .pricing-price-amount {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    color: var(--text-faint);
}
.pricing-card.featured {
    border: 2px solid var(--purple);
    background: linear-gradient(180deg, var(--purple) 0%, #5B21B6 100%);
    box-shadow: 0 20px 60px rgba(124,58,237,0.35);
    transform: translateY(0);
    padding: 56px 32px;
    margin: 0;
    color: #fff;
    z-index: 2;
    position: relative;
}
.pricing-card.featured h3 { color: #fff; }
.pricing-card.featured .pricing-price-amount { color: #fff; }
.pricing-card.featured .pricing-price-suffix { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-tier-badge { background: rgba(255,255,255,0.2); color: #fff; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.2); }
.pricing-card.featured .pricing-features li { color: #fff; }
.pricing-card.featured .pricing-features li svg circle,
.pricing-card.featured .pricing-features li svg path { stroke: rgba(255,255,255,0.9); }
.pricing-card.featured .pricing-cta.primary {
    background: #fff;
    color: var(--purple);
}
.pricing-card.featured .pricing-cta.primary:hover {
    background: var(--purple-light);
}
.pricing-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
    width: fit-content;
}
.pricing-tier-badge.early {
    color: var(--text-faint);
    background: var(--border);
}
.pricing-tier-badge.standard {
    color: #fff;
    background: var(--purple);
}
.pricing-tier-badge.regular {
    color: var(--purple-dark);
    background: var(--purple-light);
}
.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-ink);
    letter-spacing: -0.015em;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.pricing-price-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-ink);
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-price-suffix {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-ink);
    line-height: 1.5;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
}
.pricing-cta.primary {
    background: var(--purple);
    color: #fff;
}
.pricing-cta.primary:hover { background: var(--purple-dark); transform: translateY(-1px); }
.pricing-cta.secondary {
    background: transparent;
    color: var(--purple);
    border: 1.5px solid var(--border-purple);
}
.pricing-cta.secondary:hover { background: var(--purple-light); }
.pricing-cta.disabled {
    background: var(--border);
    color: var(--text-faint);
    cursor: not-allowed;
}
.pricing-cta.disabled:hover { transform: none; background: var(--border); }

@media (max-width: 768px) {

    /* Global */
    .container { padding: 0 20px; }
    section { padding: 60px 0; }

    /* Nav */
    .nav-inner { padding: 0 8px; }
    .nav-cta .btn-primary { display: none; }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-sub { font-size: 16px; }
    .hero-video-wrap { width: 100%; }

    .solution-interactive {
        grid-template-columns: 1fr !important;
        gap: 32px;
        margin-right: 0 !important;
    }
    .solution-preview { order: -1; }
    .sol-preview-panel { border-radius: 16px !important; }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .pricing-card.featured {
        margin: 0 !important;
        padding: 40px 24px !important;
        order: -1;
    }
    .pricing-grid > .pricing-card:not(.featured) {
        height: auto !important;
        align-self: auto !important;
    }

    .trial-timeline-wrap {
        margin: 40px auto 40px !important;
    }
    .timeline-track-bg,
    .timeline-track-fill { display: none !important; }
    .trial-timeline-wrap > div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        text-align: left !important;
    }
    .timeline-step {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 20px !important;
        text-align: left !important;
    }
    .timeline-dot { min-width: 48px; width: 48px; height: 48px; }
    .timeline-step > div:last-child { flex: 1; }
    .timeline-step h3 { margin-bottom: 4px !important; }
    .timeline-step p { max-width: 100% !important; }

    .team-stats { justify-content: center; flex-wrap: wrap; gap: 24px; }

    .btn-primary, .btn-white, .pricing-cta {
        width: 100%;
        justify-content: center;
    }

    .quote-inner { padding: 48px 24px; text-align: center; }
    .quote-inner h2 { font-size: 28px; }

    .section-label { display: inline-flex; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .pricing-card.featured { margin: 0 !important; order: -1; }
}
.persona-row {
    display: flex;
    align-items: center;
    gap: 48px;
}
@media (max-width: 900px) {
    .persona-row { flex-direction: column; gap: 48px; }
    .persona-row:nth-child(2) { flex-direction: column-reverse; }
    .persona-text { text-align: center !important; padding-left: 0 !important; padding-right: 0 !important; align-items: center !important; }
    .persona-text p { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }
    .persona-h2 { text-align: center; }
}

.persona-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.persona-text.left { text-align: left; padding-left: 8%; }
.persona-text.right { text-align: right; padding-right: 8%; }
.persona-h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--text-ink);
    margin: 0;
}
.persona-text p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    max-width: 100%;
}
.persona-text.right p { margin-left: auto; }

.persona-scene {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.persona-photo {
    width: 340px;
    height: 420px;
    background: var(--bg-lavender);
    border-radius: 16px;
    border: 2px dashed rgba(124,58,237,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.persona-photo span {
    font-size: 12px;
    color: rgba(124,58,237,0.4);
    font-weight: 500;
}

/* Pill positioning */
.ps-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--purple-light);
    border: 1.5px solid rgba(124,58,237,0.15);
    color: var(--purple);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 99px;
    box-shadow: 0 4px 20px rgba(124,58,237,0.10);
    white-space: nowrap;
    z-index: 3;
}
.ps-pill:nth-child(2) { background: #EDE9FE; color: #5B21B6; border-color: rgba(91,33,182,0.15); }
.ps-pill:nth-child(3) { background: #F5F3FF; color: #7C3AED; border-color: rgba(124,58,237,0.12); }
.ps-pill:nth-child(4) { background: #DDD6FE; color: #4C1D95; border-color: rgba(76,29,149,0.2); }
.ps-pill:nth-child(5) { background: #C4B5FD; color: #3B0764; border-color: rgba(59,7,100,0.2); }
.ps-tl { top: 16px; left: 0; }
.ps-tr { top: 16px; right: 0; }
.ps-bl { bottom: 40px; left: 0; }
.ps-br { bottom: 40px; right: 0; }
.ps-bc { bottom: -20px; }

.float-a { animation: fp1 4s ease-in-out infinite; }
.float-b { animation: fp2 4.8s ease-in-out infinite; }
.float-c { animation: fp3 3.8s ease-in-out infinite 0.3s; }
.float-d { animation: fp4 5.2s ease-in-out infinite 0.6s; }

@keyframes fp1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes fp2 { 0%,100%{transform:translateY(-4px)} 50%{transform:translateY(5px)} }
@keyframes fp3 { 0%,100%{transform:translateY(3px)} 50%{transform:translateY(-6px)} }
@keyframes fp4 { 0%,100%{transform:translateY(-2px)} 50%{transform:translateY(7px)} }

.section-problems { background:#fff; padding:100px 0 64px; overflow:hidden; }
.problems-head { text-align:center; max-width:640px; margin:0 auto 64px; }
.problems-head h2 { font-size:clamp(28px,3.5vw,42px); font-weight:700; letter-spacing:-0.025em; margin:12px 0 16px; }
.problems-head p { font-size:16px; color:var(--text-muted); line-height:1.7; }

.prob-carousel-outer { overflow:hidden; width:100%; padding:20px 0 40px; }
.prob-carousel-track {
    display:flex;
    gap:20px;
    width:max-content;
    transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
    cursor:grab;
}
.prob-carousel-track:active { cursor:grabbing; }

.prob-card {
    flex:0 0 300px;
    background:#fff;
    border:1.5px solid var(--border);
    border-radius:24px;
    padding:32px 28px;
    display:flex;
    flex-direction:column;
    gap:14px;
    opacity:0.5;
    transform:scale(0.93);
    transition:opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    user-select:none;
}
.prob-card.active {
    opacity:1;
    transform:scale(1);
    box-shadow:0 8px 40px rgba(124,58,237,0.18), 0 2px 8px rgba(124,58,237,0.08);
    border-color:rgba(124,58,237,0.2);
    background:#F5F3FF;
}

.prob-card.secondary { opacity:0.38; }
.prob-card.secondary.active { opacity:0.75; }
.prob-icon { width:48px; height:48px; border-radius:12px; background:var(--bg-lavender); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.prob-card.center .prob-icon { background:rgba(124,58,237,0.15); }
.prob-card h3 { font-size:17px; font-weight:700; line-height:1.3; color:var(--text-ink); margin:0; }
.prob-card p { font-size:14px; line-height:1.65; color:var(--text-muted); margin:0; }

.prob-nav { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:20px; }
.prob-btn { width:44px; height:44px; border-radius:50%; border:1.5px solid var(--border); background:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text-ink); transition:background 0.2s, border-color 0.2s, color 0.2s; }
.prob-btn:hover { background:var(--purple-light); border-color:var(--purple); color:var(--purple); }
.prob-dots { display:flex; gap:6px; }
.prob-dot { width:8px; height:8px; border-radius:50%; background:var(--border); transition:background 0.2s, transform 0.2s; cursor:pointer; border:none; }
.prob-dot.active { background:var(--purple); transform:scale(1.3); }

@media (max-width:768px) { .prob-card { flex:0 0 260px; } }

.solution-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 56px;
    margin-right: 0;
}
@media (max-width: 768px) {
    .solution-interactive { grid-template-columns: 1fr; gap: 32px; margin-right: 0; }
    .solution-preview { order: -1; }
    .sol-preview-panel { border-radius: 16px 0 16px 16px; }
}
.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sol-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    border-radius: 16px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.sol-step:hover {
    background: rgba(255,255,255,0.07);
}
.sol-step.active {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}
.sol-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sol-step.active .sol-step-num {
    background: #fff;
    color: #4C1D95;
    border-color: #fff;
}
.sol-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    transition: color 0.2s;
}
.sol-step.active .sol-step-content h3 { color: #fff; }
.sol-step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: color 0.2s, max-height 0.3s ease;
}
.sol-step.active .sol-step-content p {
    color: rgba(255,255,255,0.7);
    max-height: 100%;
}
.solution-preview {
    position: relative;
    margin-right: 0;
    height: 600px;
}
.sol-preview-panel {
    position: absolute;
    inset: 0;
    background: transparent;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    overflow: hidden;
}
.sol-preview-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sol-preview-img {
    height: 100%;
}
.sol-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 32px;
}
.sol-placeholder span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.trial-timeline-wrap { position: relative; }
.timeline-track-bg {
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 3px;
    background: var(--border-purple);
    border-radius: 99px;
    z-index: 1;
}
.timeline-track-fill {
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    width: 0%;
    max-width: calc(100% - 33.33% - 56px);
    height: 3px;
    background: linear-gradient(90deg, var(--purple), #A78BFA);
    border-radius: 99px;
    z-index: 1;
    transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--bg-lavender);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}
.timeline-dot.filled { background: var(--purple); }
.timeline-dot.outline {
    background: white;
    border: 2.5px solid var(--border-purple);
    opacity: 0.5;
    transform: scale(0.85);
}
.timeline-dot.active {
    border-color: var(--purple);
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 6px var(--bg-lavender), 0 0 0 10px rgba(124,58,237,0.12);
}
.section-team {
    background: var(--bg-soft);
    padding: 100px 0 0;
    overflow: hidden;
}
.team-strip-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding: 0 32px 80px;
}
.team-strip {
    display: flex;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    transform: translateX(-80px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.8s ease;
}
.team-strip.visible {
    transform: translateX(0);
    opacity: 1;
}
.team-member {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
}
.team-member-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.team-member-photo {
    background: var(--bg-lavender);
    aspect-ratio: 3/4;
    overflow: hidden;
}
.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
@media (max-width: 600px) {
    .team-strip-wrap { padding: 0 20px 60px; }
    .team-strip { flex-direction: column; transform: translateY(40px); gap: 16px; }
    .team-strip.visible { transform: translateY(0); }
    .team-member { min-width: 100%; }
}