/* Design Tokens */
:root {
    --bg-primary: #080c14;
    --bg-secondary: #0f1626;
    --bg-tertiary: #172237;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --color-accent-indigo: #6366f1;
    --color-accent-purple: #a855f7;
    --color-accent-pink: #ec4899;
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;
    --glass-bg: rgba(15, 22, 38, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* CSS Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent-indigo), var(--color-accent-purple) 50%, var(--color-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-indigo), var(--color-accent-purple));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

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

/* Floating Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

/* Header Login Button */
.btn-login-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.btn-login-nav:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 125px 0 50px;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(168, 85, 247, 0.1), transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    align-self: flex-start;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 54px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
}

/* Hero WhatsApp Demo Button */
.hero-cta-container {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    width: 100%;
}

.btn-wa-demo-wide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    padding: 16px 28px;
    background: #25D366;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-wa-demo-wide:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.48);
    color: #000000;
}

/* Forms */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.input-group {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 6px 6px 6px 12px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    align-items: center;
}

.input-group:focus-within {
    border-color: rgba(37, 211, 102, 0.6);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.country-code-container {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 8px;
    margin-right: 4px;
    flex-shrink: 0;
}

.country-code-select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    padding: 10px 14px 10px 2px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.country-code-select option {
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    padding: 8px;
}

.select-arrow {
    position: absolute;
    right: 2px;
    pointer-events: none;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.input-group input[type="tel"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 10px 12px 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    width: 100%;
}

.input-group input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group .btn-primary {
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    transition: all 0.25s ease;
}

.input-group .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #28e06c 0%, #159c8d 100%);
}

.form-helper {
    font-size: 13px;
    color: #9ca3af;
}

.arrow-icon {
    transition: transform 0.2s ease-in-out;
}

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

/* Success Message */
.success-message {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    animation: fadeIn 0.4s ease-out;
}

.success-icon {
    font-size: 32px;
}

.success-message h3 {
    color: #4ade80;
    font-size: 16px;
    margin-bottom: 4px;
}

.success-message p {
    color: #a7f3d0;
    font-size: 14px;
}

.hidden {
    display: none !important;
}

/* WhatsApp Simulator Container */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.visual-square-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

/* Floating Social Badges around phone */
.social-pop-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: scale(0.3) translateY(12px);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    z-index: 15;
    pointer-events: none;
}

.social-pop-badge.pop-active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.pop-ig {
    top: 10px;
    left: calc(50% - 180px);
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.pop-tt {
    top: 20px;
    right: calc(50% - 170px);
    background: #121212;
    border: 1px solid rgba(0, 242, 234, 0.6);
    box-shadow: -2px 0 10px rgba(0, 242, 234, 0.4), 2px 0 10px rgba(255, 0, 80, 0.4);
}

.pop-fb {
    top: 110px;
    left: calc(50% - 190px);
    background: linear-gradient(135deg, #1877f2, #0c5dc0);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pop-yt {
    top: 120px;
    right: calc(50% - 180px);
    background: linear-gradient(135deg, #ff0000, #c40000);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pop-th {
    top: 210px;
    left: calc(50% - 185px);
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pop-pin {
    top: 220px;
    right: calc(50% - 175px);
    background: linear-gradient(135deg, #e60023, #ad081b);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pop-x {
    top: 310px;
    left: calc(50% - 175px);
    background: #0f1419;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.pop-li {
    top: 320px;
    right: calc(50% - 170px);
    background: linear-gradient(135deg, #0a66c2, #004182);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.visual-square-card::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.16) 0%, rgba(99, 102, 241, 0.12) 55%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.whatsapp-card {
    width: 215px;
    height: 445px;
    background: #0b141a;
    border-radius: 36px;
    border: 7px solid #1e293b;
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.12), 0 20px 45px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transition: transform 0.3s ease;
}

.visual-square-card:hover .whatsapp-card {
    transform: scale(1.02);
}

/* Phone Notch / Dynamic Island */
.phone-notch {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 12px;
    background: #000000;
    border-radius: 10px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5px;
}

.phone-notch-camera {
    width: 5px;
    height: 5px;
    background: #0f172a;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simulator-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    transform: translateX(100%);
}

.simulator-screen.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.simulator-screen#whatsapp-screen {
    transform: translateX(-100%);
}
.simulator-screen#whatsapp-screen.active {
    transform: translateX(0);
}

.wa-header {
    background: #1f2c34;
    padding: 22px 10px 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-whatsapp-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    color: white;
    object-fit: cover;
}

.wa-name {
    font-size: 12px;
    font-weight: 600;
    color: #e9edef;
    line-height: 1.2;
}

.wa-status {
    font-size: 9.5px;
    color: var(--color-whatsapp);
}

.wa-actions {
    color: #aebac1;
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.wa-body {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 16px 16px;
}

/* WhatsApp Messages */
.wa-msg {
    max-width: 80%;
    padding: 3.5px 6px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 1.25;
    position: relative;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-msg-sent {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-msg-received {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-msg-media {
    padding: 2px;
    border-radius: 4px;
}

.wa-media-preview {
    width: 100%;
    border-radius: 4px;
    display: block;
    margin-bottom: 4px;
}

.wa-time {
    display: none !important;
}

.wa-footer {
    background: #1f2c34;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-input-mock {
    flex: 1;
    background: #2a3942;
    border-radius: 18px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8696a0;
    font-size: 11.5px;
}

.wa-mic-btn {
    width: 28px;
    height: 28px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111b21;
    font-size: 12px;
}

/* How It Works Section - Pipeline Flow */
.how-it-works-section {
    padding: 85px 0 65px;
    background: radial-gradient(circle at 50% 30%, rgba(37, 211, 102, 0.04), transparent 70%);
}

.pipeline-flow {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
}

.pipeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.pipeline-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.25) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pipeline-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.pipeline-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

.pipeline-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    padding: 0 4px;
}

.pipeline-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.pill-badge svg {
    flex-shrink: 0;
}

.pipeline-wa-preview {
    margin-top: 16px;
    background: #1f2c34;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid #25D366;
}

.wa-mini-media {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
}

.wa-mini-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: #e2e8f0;
    width: 100%;
    gap: 8px;
}

.wa-mini-msg {
    line-height: 1.2;
}

.wa-mini-meta {
    font-size: 10.5px;
    color: #8696a0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.blue-tick {
    color: #53bdeb;
    font-weight: bold;
}

.pipeline-pub-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pub-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #e2e8f0;
}

.pub-dot.green-glow {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px #34d399;
}

@media (max-width: 968px) {
    .pipeline-flow {
        flex-direction: column;
        gap: 16px;
    }

    .pipeline-connector {
        transform: rotate(90deg);
        padding: 4px 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    margin-top: 35px;
    display: flex;
    align-items: center;
    width: 100%;
}

.testimonials-track-outer {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 45px 25px 45px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}

.testimonials-track-outer::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 310px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    padding: 24px 22px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    pointer-events: auto;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.6);
    transform: translateY(-50%) scale(1.08);
}

.arrow-left {
    left: 4px;
}

.arrow-right {
    right: 4px;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 84vw;
    }
    .carousel-arrow {
        display: none;
    }
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2.5px;
    text-align: center;
}

.testimonial-quote {
    font-size: 14.5px;
    line-height: 1.6;
    color: #d1d5db;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.avatar-sj {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.avatar-mc {
    background: linear-gradient(135deg, #3b82f6, #10b981);
}

.avatar-er {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    font-size: 10px;
    font-weight: 600;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 2px 7px;
    border-radius: 20px;
}

.author-role {
    font-size: 12px;
    color: #9ca3af;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header h2 {
    font-size: 40px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 20px;
}

/* How Section */
.how-section {
    padding: 100px 0;
}

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

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 64px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(99, 102, 241, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-card h3 {
    font-size: 20px;
    z-index: 2;
}

.step-card p {
    z-index: 2;
}

/* Bottom CTA / Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.cta-card {
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent),
                radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.15), transparent),
                var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-card h2 {
    font-size: 40px;
}

.cta-card p {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 12px;
}

.max-w-md {
    max-width: 450px;
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    background: var(--bg-primary);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    color: var(--color-accent-indigo);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Publish Screen Feed Preview styles */
.pub-header {
    background: #1f2c34;
    padding: 22px 10px 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    color: #e9edef;
}

.pub-badge {
    background: var(--color-whatsapp-dark);
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.pub-body {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
}

.mock-post {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mock-post.active {
    opacity: 1;
    z-index: 10;
}

/* Instagram Mock */
.instagram-mock {
    background: #000;
    color: #fff;
}

.mock-post-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
}

.mock-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.mock-username {
    font-size: 11px;
    font-weight: 600;
}

.mock-post-media {
    flex: 1;
    background: url("/hair.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mock-post-footer {
    padding: 6px 10px;
}

.mock-actions {
    font-size: 13px;
    margin-bottom: 4px;
    display: flex;
    gap: 8px;
}

.mock-caption {
    font-size: 10.5px;
    line-height: 1.35;
}

/* Facebook Mock */
.facebook-mock {
    background: #18191a;
    color: #e4e6eb;
}

.mock-time {
    font-size: 9.5px;
    color: #b0b3b8;
    margin-top: 1px;
}

.fb-text {
    padding: 0 10px 6px;
    font-size: 10.5px;
}

.facebook-media {
    flex: 1;
    background: url("/hair.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-footer {
    border-top: 1px solid #3e4042;
    padding: 6px 10px;
}

.fb-likes {
    font-size: 9.5px;
    color: #b0b3b8;
}

/* TikTok Mock */
.tiktok-mock {
    background: #000;
    color: #fff;
    position: relative;
}

.tiktok-video-container {
    width: 100%;
    height: 100%;
    background: url("/hair.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tt-avatar {
    border: 2px solid white;
    margin-bottom: 4px;
}

.tiktok-sidebar {
    position: absolute;
    right: 12px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 20;
}

.tt-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 22px;
}

.tt-icon span {
    font-size: 10px;
    color: #fff;
    margin-top: 4px;
}

.tiktok-info {
    position: absolute;
    left: 14px;
    bottom: 20px;
    right: 70px;
    z-index: 20;
}

.tt-username {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.faq-accordion {
    max-width: 800px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16.5px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

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

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 24px 22px 24px;
}

.faq-answer p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 968px) {
    .hero-section {
        padding: 90px 0 30px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .hero-content {
        display: contents;
    }

    .hero-content h1 {
        font-size: 32px;
        order: 1;
    }

    .hero-subtitle {
        order: 2;
        font-size: 15px;
    }

    .hero-visual {
        order: 3;
        margin: 16px 0 0;
        width: 100%;
    }

    .hero-cta-container {
        order: 4;
        margin-top: 16px;
        margin-bottom: 8px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-wa-demo-wide {
        font-size: 15px;
        padding: 12px 20px;
        max-width: 340px;
        border-radius: 14px;
        gap: 8px;
    }

    .btn-wa-demo-wide svg {
        width: 20px;
        height: 20px;
    }

    .qr-container {
        order: 5;
        width: 100%;
        margin-top: 16px;
    }
    
    .features-grid, .steps-container {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer {
        padding: 24px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* QR Code and Direct Try Section */
.qr-container {
    margin-top: 32px;
    width: 100%;
    max-width: 500px;
}

.qr-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.qr-divider::before,
.qr-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.qr-divider:not(:empty)::before {
    margin-right: 16px;
}

.qr-divider:not(:empty)::after {
    margin-left: 16px;
}

.qr-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

.qr-image {
    width: 110px;
    height: 110px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0b0f19;
    padding: 4px;
    flex-shrink: 0;
}

.qr-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qr-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-whatsapp);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-phone {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.qr-phone:hover {
    color: var(--color-whatsapp);
}

.qr-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .input-group {
        flex-direction: row;
        padding: 5px 5px 5px 10px;
        gap: 4px;
        border-radius: 16px;
        width: 100%;
    }
    .country-code-select {
        font-size: 13.5px;
        padding: 8px 12px 8px 2px;
    }
    .input-group input[type="tel"] {
        font-size: 13.5px;
        text-align: left;
        padding: 8px 6px 8px 10px;
        min-width: 0;
    }
    .input-group input[type="tel"]::placeholder {
        font-size: 12px;
    }
    .input-group .btn-primary {
        width: auto;
        padding: 10px 14px;
        font-size: 13.5px;
        flex-shrink: 0;
    }
    .whatsapp-card {
        width: 190px;
        height: 385px;
        border-radius: 30px;
        border-width: 6px;
    }
    .social-pop-badge {
        font-size: 9px;
        padding: 3.5px 8px;
    }
    .pop-ig { top: 10px; left: calc(50% - 145px); }
    .pop-tt { top: 18px; right: calc(50% - 140px); }
    .pop-fb { top: 95px; left: calc(50% - 150px); }
    .pop-yt { top: 105px; right: calc(50% - 145px); }
    .pop-th { top: 180px; left: calc(50% - 148px); }
    .pop-pin { top: 190px; right: calc(50% - 142px); }
    .pop-x { top: 265px; left: calc(50% - 140px); }
    .pop-li { top: 275px; right: calc(50% - 138px); }
    .qr-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    .qr-image {
        width: 130px;
        height: 130px;
    }
}

