/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #6C47FF 0%, #5430E8 60%, #4318D0 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.3), transparent);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.demo-trigger {
    cursor: pointer;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FF6B35, #FF4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
}

.stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 300px;
    background: #111;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s ease;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

@keyframes float {

    0%,
    100% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(0);
    }

    50% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(-12px);
    }
}

.phone-screen {
    background: #FFFFFF;
    border-radius: 26px;
    overflow: hidden;
    min-height: 480px;
}

.mock-dashboard {
    padding: 20px 16px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mock-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.mock-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.mock-card {
    padding: 14px 12px;
    border-radius: var(--radius-md);
    position: relative;
}

.mock-card-green {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}

.mock-card-blue {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.mock-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
}

.mock-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.mock-trend {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.mock-card-blue .mock-trend {
    color: var(--info);
    background: rgba(59, 130, 246, 0.1);
}

.mock-voice-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.voice-wave span {
    display: block;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.voice-wave span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.voice-wave span:nth-child(2) {
    height: 14px;
    animation-delay: 0.1s;
}

.voice-wave span:nth-child(3) {
    height: 20px;
    animation-delay: 0.2s;
}

.voice-wave span:nth-child(4) {
    height: 14px;
    animation-delay: 0.3s;
}

.voice-wave span:nth-child(5) {
    height: 8px;
    animation-delay: 0.4s;
}

@keyframes waveAnim {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.mock-transactions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-tx {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.mock-tx>span:first-child {
    font-size: 1.2rem;
}
.mock-tx-icon {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mock-tx-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.mock-tx div {
    flex: 1;
}

.mock-tx strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
}

.mock-tx small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.tx-amount {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
}

.tx-red {
    color: var(--danger);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

.demo-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1200;
}

.demo-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
}

.demo-modal-dialog {
    position: relative;
    width: min(1080px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 28px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
    box-shadow: 0 32px 120px rgba(15, 23, 42, 0.28);
    z-index: 1;
}

.demo-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(108, 60, 225, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.demo-copy h3 {
    font-size: 2rem;
    margin: 18px 0 14px;
}

.demo-copy p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.demo-points {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.demo-points li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(108, 60, 225, 0.08);
    border: 1px solid rgba(108, 60, 225, 0.12);
    font-weight: 600;
}

.demo-player-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-player {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: radial-gradient(circle at top, #2d1b69 0%, #120b2f 65%, #0f172a 100%);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.demo-placeholder-note {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #efe8ff;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* ===== Trusted By ===== */
.trusted-by {
    padding: 40px 0;
    background: var(--bg-primary);
}

.trusted-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.trust-logos span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
}

/* ===== Features ===== */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.feature-card {
    padding: 36px 28px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-highlight {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    justify-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light), #F0E6FF);
    border-color: var(--primary);
}

.feature-highlight .feature-icon {
    font-size: 3.5rem;
}

.feature-highlight h3 {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.feature-highlight p {
    text-align: center;
    max-width: 820px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.landing-svg-icon {
    width: 26px;
    height: 26px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.landing-svg-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
.feature-icon .landing-svg-icon {
    width: 32px;
    height: 32px;
}
.title-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.title-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.step-icon .landing-svg-icon {
    width: 30px;
    height: 30px;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
}

/* ===== Story Showcase ===== */
.story-showcase {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(108, 71, 255, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(8, 145, 178, 0.08), transparent 24%),
        linear-gradient(180deg, #faf9ff 0%, #f5f6ff 100%);
}

.story-header {
    max-width: 900px;
    margin: 0 auto 52px;
}

.story-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 8px 0;
    perspective: 1200px;
}

.story-stack::before {
    display: none;
}

.story-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    width: 100%;
    padding: 34px 30px 30px;
    border-radius: 30px;
    border: 1px solid rgba(108, 71, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 255, 0.96)),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03), rgba(8, 145, 178, 0.02));
    box-shadow: 0 22px 48px rgba(76, 47, 163, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 28px;
    right: 28px;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(124, 58, 237, 0.22) 0 12px,
        transparent 12px 24px
    );
}

.story-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 0 1px, transparent 1px 37px),
        linear-gradient(rgba(124, 58, 237, 0.035) 0 1px, transparent 1px 34px);
    background-size: 38px 100%, 100% 34px;
    mask: linear-gradient(#000, #000);
    opacity: 0.35;
}

.story-card:nth-child(odd) {
    transform: rotate(-0.7deg);
}

.story-card:nth-child(odd)::before {
    left: 28px;
    right: 28px;
}

.story-card:nth-child(even) {
    transform: rotate(0.7deg);
}

.story-card:hover {
    border-color: rgba(108, 71, 255, 0.22);
    box-shadow: 0 30px 60px rgba(76, 47, 163, 0.14);
}

.story-card:nth-child(odd):hover {
    transform: rotate(-1.05deg) translateY(-8px) translateX(-4px);
}

.story-card:nth-child(even):hover {
    transform: rotate(1.05deg) translateY(-8px) translateX(4px);
}

.story-card:nth-child(even) .story-copy {
    order: 2;
}

.story-card:nth-child(even) .story-visual {
    order: 1;
}

.story-card:nth-child(even)::before {
    left: 28px;
    right: 28px;
}

.story-copy {
    position: relative;
    z-index: 1;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(108, 71, 255, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.story-copy h3 {
    font-size: 2rem;
    line-height: 1.22;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.story-copy p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-bullets li {
    position: relative;
    padding-left: 22px;
    color: var(--text-primary);
    font-weight: 500;
}

.story-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #9f7aea);
}

.story-visual {
    min-height: 250px;
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(160deg, rgba(108, 71, 255, 0.08), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(108, 71, 255, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.story-hero .story-visual,
.story-ca .story-visual {
    background:
        linear-gradient(180deg, rgba(17, 27, 33, 0.96), rgba(17, 27, 33, 0.92)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21c8-4 18 2 18 11 0 8-8 14-16 13-3 0-7 1-10 3l2-7c-4-3-6-7-6-12 0-5 4-10 12-8z'/%3E%3Cpath d='M63 14c4 0 7 3 7 7s-3 7-7 7-7-3-7-7 3-7 7-7z'/%3E%3Cpath d='M88 18l7 8-7 8-7-8z'/%3E%3Cpath d='M27 72c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4-9-9z'/%3E%3Cpath d='M53 84h16'/%3E%3Cpath d='M61 76v16'/%3E%3Cpath d='M89 68c6 0 12 4 12 10s-6 10-12 10-12-4-12-10 6-10 12-10z'/%3E%3Cpath d='M82 98l14 8'/%3E%3Cpath d='M18 103c7-6 15-6 22 0'/%3E%3Cpath d='M40 103c3-5 8-8 14-8'/%3E%3Cpath d='M97 43c0 4-3 7-7 7s-7-3-7-7 3-7 7-7 7 3 7 7z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, 120px 120px;
    border-color: rgba(255, 255, 255, 0.08);
}

.story-hero .story-visual.invoice-sketch-visual {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 255, 0.96)),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03), rgba(8, 145, 178, 0.02));
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
}

.story-hero .story-visual.invoice-sketch-visual::after {
    content: none;
}

.invoice-sketch-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    display: block;
    border-radius: 0;
    background: transparent;
}

.mini-step-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(76, 47, 163, 0.08);
}

.mini-step-card.emphasis {
    border: 1px solid rgba(124, 58, 237, 0.24);
    background: linear-gradient(135deg, #f6f0ff, #ffffff);
}

.mini-step-index {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mobile-proof {
    padding: 16px;
    border-radius: 20px;
    background-color: #0f1419;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21c8-4 18 2 18 11 0 8-8 14-16 13-3 0-7 1-10 3l2-7c-4-3-6-7-6-12 0-5 4-10 12-8z'/%3E%3Cpath d='M63 14c4 0 7 3 7 7s-3 7-7 7-7-3-7-7 3-7 7-7z'/%3E%3Cpath d='M88 18l7 8-7 8-7-8z'/%3E%3Cpath d='M27 72c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4-9-9z'/%3E%3Cpath d='M53 84h16'/%3E%3Cpath d='M61 76v16'/%3E%3Cpath d='M89 68c6 0 12 4 12 10s-6 10-12 10-12-4-12-10 6-10 12-10z'/%3E%3Cpath d='M82 98l14 8'/%3E%3Cpath d='M18 103c7-6 15-6 22 0'/%3E%3Cpath d='M40 103c3-5 8-8 14-8'/%3E%3Cpath d='M97 43c0 4-3 7-7 7s-7-3-7-7 3-7 7-7 7 3 7 7z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e9edef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-proof-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    margin-bottom: 12px;
    color: #e9edef;
}

.proof-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #e9edef;
}

.proof-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proof-bubble {
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.4;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.proof-bubble.merchant {
    background: #134d37;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 6px;
}

.proof-bubble.customer {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 6px;
}

.ask-visual {
    justify-content: flex-start;
}

.query-chip {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(108, 71, 255, 0.18);
    color: var(--text-primary);
    font-weight: 600;
}

.query-chip.alt {
    margin-left: auto;
    background: rgba(108, 71, 255, 0.08);
}

.insight-window {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(108, 71, 255, 0.16);
    box-shadow: 0 12px 30px rgba(83, 59, 173, 0.08);
}

.insight-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 700;
}

.insight-answer {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.insight-table {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    font-size: 0.92rem;
}

.insight-table div:nth-child(2n) {
    font-weight: 700;
}

.scan-visual {
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.scan-sheet {
    flex: 1;
    min-height: 220px;
    border-radius: 18px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(76, 47, 163, 0.08);
}

.scan-sheet.raw {
    border: 1px dashed rgba(124, 58, 237, 0.35);
}

.scan-sheet.parsed {
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: linear-gradient(160deg, #ffffff, #f4fff9);
}

.scan-lines {
    margin-top: 14px;
    height: 150px;
    border-radius: 12px;
    background:
        linear-gradient(#ede9fe 0 0) 0 0 / 100% 14px,
        linear-gradient(#f1f5f9 0 0) 0 26px / 100% 10px,
        linear-gradient(#f1f5f9 0 0) 0 50px / 88% 10px,
        linear-gradient(#f1f5f9 0 0) 0 74px / 92% 10px,
        linear-gradient(#f1f5f9 0 0) 0 98px / 76% 10px,
        linear-gradient(#f1f5f9 0 0) 0 122px / 84% 10px;
    background-repeat: no-repeat;
}

.scan-arrow {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.parsed-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2ff;
    font-size: 0.92rem;
}

.parsed-row:last-child {
    border-bottom: none;
}

.gst-visual {
    gap: 20px;
}

.gst-lane {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gst-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(108, 71, 255, 0.16);
    color: var(--text-secondary);
    font-weight: 600;
}

.gst-pill.done {
    background: rgba(16, 185, 129, 0.12);
    color: #0f766e;
    border-color: rgba(16, 185, 129, 0.18);
}

.gst-pill.active {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-color: rgba(124, 58, 237, 0.22);
}

.gst-rail {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(108, 71, 255, 0.4), rgba(108, 71, 255, 0.1));
}

.gst-summary-card {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(108, 71, 255, 0.14);
    box-shadow: 0 10px 24px rgba(76, 47, 163, 0.08);
}

.gst-summary-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ca-visual {
    gap: 12px;
}

.story-ca .story-visual.ca-sketch-visual {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 255, 0.96)),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03), rgba(8, 145, 178, 0.02));
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
}

.ca-sketch-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    display: block;
    border-radius: 0;
    background: transparent;
}

.chat-card {
    padding: 16px;
    border-radius: 18px;
    background: #202c33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    color: #e9edef;
}

.chat-card.primary {
    background: #134d37;
    border-color: rgba(255, 255, 255, 0.04);
}

.chat-card.primary strong,
.chat-card.primary small,
.chat-card.primary span {
    color: #fff;
}

.chat-card strong,
.chat-card small,
.chat-card span {
    color: #e9edef;
}

.chat-card.reply {
    margin-left: 36px;
    background: #134d37;
}

/* ===== WhatsApp Anywhere ===== */
.whatsapp-anywhere {
    padding: 28px 0 100px;
    background: linear-gradient(180deg, #f5f6ff 0%, #ffffff 100%);
}

.whatsapp-anywhere-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    gap: 44px;
    align-items: center;
    padding: 42px;
    border-radius: 34px;
    border: 1px solid rgba(108, 71, 255, 0.12);
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 255, 0.96));
    box-shadow: 0 24px 50px rgba(76, 47, 163, 0.08);
}

.whatsapp-anywhere-copy h2 {
    font-size: 4.2rem;
    line-height: 0.96;
    margin: 18px 0 20px;
    color: var(--text-primary);
}

.whatsapp-anywhere-copy p {
    max-width: 560px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.whatsapp-anywhere-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.whatsapp-anywhere-points li {
    position: relative;
    padding-left: 22px;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.whatsapp-anywhere-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #9f7aea);
}

.whatsapp-anywhere-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    border-radius: 30px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.whatsapp-anywhere-visual::after {
    display: none;
}

.whatsapp-anywhere-visual img {
    width: 100%;
    max-width: 520px;
    display: block;
    border-radius: 28px;
    background: transparent;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

/* ===== Workflow Loop ===== */
.workflow-loop {
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(8, 145, 178, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f5ff 0%, #f4f7fb 100%);
}

.workflow-hero {
    width: 100%;
    margin: 0 auto;
    padding: 42px;
    border-radius: 34px;
    border: 1px solid rgba(108, 71, 255, 0.14);
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 255, 0.96));
    box-shadow: 0 26px 70px rgba(62, 42, 137, 0.08);
    text-align: center;
}

.workflow-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(108, 71, 255, 0.08);
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.workflow-hero h2 {
    max-width: min(100%, 1080px);
    margin: 0 auto 18px;
    font-size: clamp(2.6rem, 4vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.workflow-headline-top,
.workflow-headline-bottom {
    display: block;
}

.workflow-headline-top {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    column-gap: 0.16em;
    row-gap: 0.04em;
    white-space: normal;
}

.workflow-word-stack {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    min-width: 12ch;
    min-height: 1em;
    max-width: 100%;
    margin-left: 0;
    line-height: 1.08;
    text-align: center;
    overflow: hidden;
    vertical-align: baseline;
    color: var(--primary);
}

.workflow-word {
    position: absolute;
    display: block;
    left: 50% !important;
    right: auto !important;
    width: auto;
    margin: 0;
    top: 50%;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 140%));
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-align: center;
}

.workflow-word.is-active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.workflow-hero p {
    max-width: 760px;
    margin: 0 auto 34px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: left;
}

.workflow-step-card {
    padding: 30px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(108, 71, 255, 0.12);
    box-shadow: 0 12px 28px rgba(85, 60, 170, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.workflow-step-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(108, 71, 255, 0.26);
    background: linear-gradient(180deg, rgba(250, 245, 255, 0.98), rgba(255, 255, 255, 0.96));
    box-shadow: 0 22px 44px rgba(85, 60, 170, 0.14);
}

.workflow-step-index {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.06em;
}

.workflow-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.workflow-step-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 960px) {
    .demo-modal-dialog {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.pricing::before {
    content: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-aurora-shell {
    position: relative;
    width: 100vw;
    max-width: none;
    margin: 48px auto 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 80px 120px 92px;
    border-radius: 52px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 54%, rgba(103, 232, 249, 0.26) 0%, rgba(103, 232, 249, 0.08) 18%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.22) 0%, rgba(167, 139, 250, 0.08) 20%, transparent 44%),
        radial-gradient(circle at 86% 50%, rgba(34, 211, 238, 0.24) 0%, rgba(34, 211, 238, 0.08) 18%, transparent 42%),
        linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 18%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.28) 56%, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.18) 100%);
    background-size: 160% 160%, 160% 160%, 160% 160%, 240% 100%;
    background-position: 0% 50%, 50% 50%, 100% 50%, 0% 50%;
    animation: pricing-aurora-shell-flow 26s linear infinite;
}

.pricing-aurora-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            102deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 8%,
            rgba(124, 58, 237, 0.16) 11%,
            rgba(103, 232, 249, 0.2) 15%,
            rgba(216, 180, 254, 0.18) 19%,
            rgba(255, 255, 255, 0) 24%
        );
    background-size: 240% 100%;
    background-position: 0% 50%;
    opacity: 0.9;
    animation: pricing-aurora-band 18s linear infinite;
    mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.92) 70%, rgba(0, 0, 0, 0) 96%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.92) 70%, rgba(0, 0, 0, 0) 96%);
}

.pricing .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.landing-pricing-cards {
    position: relative;
    isolation: isolate;
    z-index: 1;
}

.landing-pricing-cards::before {
    content: none;
}

.landing-pricing-cards::after {
    content: none;
}

.landing-pricing-cards > .card {
    position: relative;
    z-index: 1;
}

.pricing .card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.pricing .card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing .card.popular {
    border: 2.5px solid #7c3aed;
    background: linear-gradient(160deg, #faf5ff 0%, #ffffff 60%);
}

.pricing .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #7c3aed;
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.pricing .plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing .plan-name.basic { color: #0f172a; }
.pricing .plan-name.pro { color: #7c3aed; }
.pricing .plan-name.elite { color: #0891b2; }

.pricing .plan-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 24px;
}

.pricing .strike-row {
    margin-bottom: 6px;
    min-height: 18px;
}

.pricing .old-price {
    font-size: 1.35rem;
    color: #64748b;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 1px;
    text-decoration: none;
}

.pricing .old-price::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    border-top: 2px solid currentColor;
    transform: translateY(-50%);
    pointer-events: none;
}

.pricing .price-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pricing .amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.pricing .per {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.pricing .billing-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 28px;
    min-height: 18px;
}

.pricing .cta {
    position: relative;
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: 0.2s;
    overflow: hidden;
    isolation: isolate;
}

.pricing .cta-outline {
    background: transparent;
    border: 2px solid #7c3aed;
    color: #7c3aed;
}

.pricing .cta-outline:hover {
    background: #ede9fe;
}

.pricing .cta-filled {
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.pricing .cta-filled:hover {
    background: #6d28d9;
}

@keyframes pricing-aurora-shell-flow {
    from {
        background-position: 0% 50%, 50% 50%, 100% 50%, 0% 50%;
    }
    to {
        background-position: 32% 50%, 62% 50%, 72% 50%, 220% 50%;
    }
}

@keyframes pricing-aurora-band {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 220% 50%;
    }
}

.landing-pricing-cards .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.34), rgba(124, 58, 237, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
}

.landing-pricing-cards .cta::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(
        108deg,
        transparent 40%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.95) 49%,
        rgba(196, 160, 255, 0.95) 52%,
        rgba(124, 58, 237, 0.85) 55%,
        rgba(255, 255, 255, 0.28) 58%,
        transparent 63%
    );
    background-size: 220% 100%;
    background-position: 155% 50%;
    animation: pricing-cta-rim-sweep 3.1s linear infinite;
    pointer-events: none;
    opacity: 1;
    filter: blur(0.15px);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

@keyframes pricing-cta-rim-sweep {
    0% {
        background-position: 155% 50%;
    }
    100% {
        background-position: -55% 50%;
    }
}

.pricing .divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 24px 0;
}

.pricing .features-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #94a3b8;
    margin-bottom: 14px;
}

.pricing .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pricing .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.4;
}

.pricing .feature-list li .icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing .feature-list li .icon.check { color: #16a34a; }
.pricing .feature-list li .icon.plus { color: #7c3aed; }
.pricing .feature-list li .icon.star { color: #0891b2; }

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card>p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}
.author-avatar .landing-svg-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-billbabu {
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.07), transparent 28%),
        linear-gradient(180deg, rgba(250, 250, 255, 0.92), rgba(255, 255, 255, 1));
}

.about-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.95fr);
    gap: 28px;
    padding: 40px;
    border: 1px solid transparent;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 255, 0.96));
    box-shadow: 0 24px 70px rgba(50, 41, 85, 0.08);
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(124, 58, 237, 0.42), rgba(124, 58, 237, 0.26));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
}

.about-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        108deg,
        transparent 42%,
        rgba(255, 255, 255, 0.06) 46%,
        rgba(255, 255, 255, 1) 49.5%,
        rgba(196, 160, 255, 1) 51.5%,
        rgba(124, 58, 237, 0.95) 53.5%,
        rgba(255, 255, 255, 0.45) 56%,
        transparent 60%
    );
    background-size: 230% 100%;
    background-position: 160% 50%;
    animation: about-card-shine-sweep 3s linear infinite;
    pointer-events: none;
    opacity: 1;
    filter: blur(0.25px);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 3px;
}

@keyframes about-card-shine-sweep {
    0% {
        background-position: 160% 50%;
    }
    100% {
        background-position: -60% 50%;
    }
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-copy p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-copy .about-lead {
    font-size: 1.14rem;
    line-height: 1.85;
    color: var(--text-primary);
    font-weight: 600;
}

.about-highlights {
    display: grid;
    gap: 16px;
    align-content: start;
}

.about-pill {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(124, 58, 237, 0.14);
    box-shadow: 0 14px 34px rgba(63, 47, 122, 0.08);
}

.about-pill strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--text-primary);
}

.about-pill span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), #4A1FB8);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}

.cta-phone {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: white;
}

.footer .logo-text {
    color: #ffffff;
}

.footer .logo-mark img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .story-card,
    .story-card:nth-child(odd),
    .story-card:nth-child(even) {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.86fr);
        transform: none;
    }

    .story-card:nth-child(even) .story-copy {
        order: 2;
    }

    .story-card:nth-child(even) .story-visual {
        order: 1;
    }

    .workflow-hero {
        padding: 42px 28px 30px;
    }

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

    .whatsapp-anywhere-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .whatsapp-anywhere-copy h2 {
        font-size: 3.4rem;
    }

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

    .feature-highlight {
        grid-column: span 2;
    }

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

    .pricing-aurora-shell {
        padding: 72px 72px 82px;
        border-radius: 42px;
    }

    .pricing .card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, 0.96);
    }

    .nav-container {
        height: 64px;
        padding-inline: 18px;
    }

    .logo {
        gap: 8px;
    }

    .logo-mark img {
        width: 27px;
        height: 31px;
    }

    .logo-text {
        font-size: 1.55rem;
        letter-spacing: -0.8px;
    }

    .nav-actions {
        gap: 8px;
    }

    .lang-toggle,
    .hamburger {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .hamburger span {
        margin: 0 auto;
    }

    .nav-links.active {
        top: 64px;
        padding: 18px;
        gap: 14px;
    }

    .hero {
        padding: 92px 0 56px;
        min-height: auto;
    }

    .hero-container {
        gap: 34px;
        padding-inline: 18px;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 7px 16px;
        font-size: 0.78rem;
    }

    .hero h1 {
        font-size: clamp(2.05rem, 9vw, 3rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        max-width: 36rem;
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .hero-cta {
        width: min(100%, 360px);
        margin: 0 auto 34px;
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        min-height: 52px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        width: min(100%, 390px);
        margin: 0 auto;
    }

    .stat {
        padding: 12px 8px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .stat strong {
        font-size: 1.05rem;
    }

    .stat span {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .stat-divider {
        display: none;
    }

    .phone-mockup {
        width: min(76vw, 290px);
        border-radius: 32px;
        transform: none;
        animation: none;
    }

    .phone-screen {
        min-height: 430px;
    }

    .story-showcase {
        padding: 84px 0;
    }

    .story-card,
    .story-card:nth-child(odd),
    .story-card:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 18px;
        transform: none;
    }

    .story-card:nth-child(even) .story-copy,
    .story-card:nth-child(even) .story-visual {
        order: initial;
    }

    .story-copy h3 {
        font-size: 1.55rem;
    }

    .story-visual {
        min-height: auto;
    }

    .whatsapp-anywhere {
        padding: 18px 0 84px;
    }

    .whatsapp-anywhere-card {
        padding: 28px 22px;
    }

    .whatsapp-anywhere-copy h2 {
        font-size: 2.7rem;
    }

    .whatsapp-anywhere-copy p {
        font-size: 1rem;
    }

    .workflow-hero {
        padding: 32px 20px 24px;
    }

    .workflow-kicker {
        margin-bottom: 14px;
    }

    .workflow-hero h2 {
        font-size: 2.2rem;
        line-height: 1.12;
    }

    .workflow-hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .workflow-word-stack {
        display: block;
        min-height: 1.2em;
        margin: 8px 0;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 28px 22px;
        gap: 20px;
        border-radius: 24px;
    }

    .scan-visual {
        flex-direction: column;
    }

    .scan-arrow {
        transform: rotate(90deg);
    }

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

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

    .feature-highlight {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .pricing .cards {
        grid-template-columns: 1fr;
        width: min(100%, 390px);
        max-width: calc(100vw - 36px);
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .pricing-aurora-shell {
        padding: 42px 0 54px;
        border-radius: 0;
    }

    .pricing .card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .pricing .card {
        padding: 28px 22px;
        border-radius: 18px;
    }

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

    .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.95rem, 10vw, 2.4rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 10px;
    }

    .stat {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: baseline;
        gap: 8px;
        text-align: left;
    }

    .phone-mockup {
        width: min(84vw, 270px);
    }

    .mock-dashboard {
        padding: 16px 12px;
    }

    .pricing {
        padding: 72px 0 64px;
    }

    .pricing-aurora-shell {
        margin-top: 32px;
        padding: 34px 0 42px;
    }

    .pricing .cards {
        max-width: calc(100vw - 32px);
    }

    .pricing .amount {
        font-size: 2.35rem;
    }
}
