/* ===== VARIABLES ===== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== REUSABLE CLASSES ===== */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    white-space: nowrap;
}

.button--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button--secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.button--secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.button--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: var(--transition);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav__logo:hover .logo__icon {
    transform: rotate(15deg);
}

.logo-highlight {
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
}

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

.hero__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.dashboard-preview {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.dashboard-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.dashboard-tab.active {
    background: var(--primary-color);
    color: var(--text-white);
}

.dashboard-chart {
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 150px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-sm);
    min-height: 20px;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.dashboard-metrics {
    display: grid;
    gap: 0.75rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-value.positive {
    color: var(--success-color);
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg-color);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card--highlighted {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.05));
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card__description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card__list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.feature-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ===== SHOPIFY ===== */
.shopify {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
}

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

.shopify__image {
    position: relative;
}

.shopify-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-secondary);
    z-index: 10;
}

.app-preview {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.app-screen {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.app-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.app-content {
    padding: 1.5rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.metric-row:last-child {
    margin-bottom: 0;
}

.score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.score.positive {
    color: var(--success-color);
}

.shopify__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shopify-feature {
    display: flex;
    gap: 1rem;
}

.shopify-feature svg {
    flex-shrink: 0;
    color: var(--success-color);
    margin-top: 0.25rem;
}

.shopify-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.shopify-feature p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.shopify__cta {
    margin-top: 2rem;
}

.shopify__note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-color);
}

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

.faq__item {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--primary-color);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--bg-card);
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--bg-secondary);
}

.faq__question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 1rem;
}

.faq__question svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
}

.cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta__form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.cta__input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    color: var(--text-primary);
}

.cta__input::placeholder {
    color: var(--text-light);
}

.cta__note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta__trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer__logo .logo__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer__logo:hover .logo__icon {
    transform: rotate(15deg);
}

.footer__description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

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

.footer__list a {
    font-size: 0.9375rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer__list a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer__badge {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .section__title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__content,
    .shopify__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero__image {
        order: -1;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1.125rem;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat__number {
        font-size: 1.75rem;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-card);
        box-shadow: var(--shadow-xl);
        padding: 4rem 2rem;
        transition: var(--transition);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__link {
        font-size: 1.125rem;
    }
    
    .nav__close,
    .nav__toggle {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .nav__btns .button {
        display: none;
    }
    
    .cta__form {
        flex-direction: column;
    }
    
    .cta__title {
        font-size: 1.75rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section__header {
        margin-bottom: 2rem;
    }
    
    .section__subtitle {
        font-size: 0.75rem;
    }
    
    .hero__title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__buttons {
        width: 100%;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
    
    .button--large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1rem;
        background: var(--bg-secondary);
        border-radius: var(--radius-md);
    }
    
    .stat__number {
        font-size: 2rem;
    }
    
    .stat__text {
        font-size: 0.875rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card__title {
        font-size: 1.25rem;
    }
    
    .shopify-feature {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq__question h3 {
        font-size: 1rem;
    }
    
    .cta__title {
        font-size: 1.5rem;
    }
    
    .cta__description {
        font-size: 1rem;
    }
    
    .cta__trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav__menu {
        width: 100%;
    }
}

/* ===== MOBILE IMPROVEMENTS ===== */
/* Better touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .button {
        min-height: 44px;
        padding: 0.875rem 1.75rem;
    }
    
    .nav__link {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .faq__question {
        min-height: 60px;
    }
}

/* Landscape mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    
    .hero__content {
        gap: 2rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
    .hero__title {
        font-size: 1.5rem;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .button--large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .dashboard-preview,
    .app-preview {
        padding: 1rem;
    }
}

/* Prevent zoom on input focus (iOS) */
@media screen and (max-width: 768px) {
    input,
    select,
    textarea {
        font-size: 16px;
    }
}

/* Improve scrolling on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Safe area for notched devices (iPhone X+) */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
}

/* Print styles */
@media print {
    .header,
    .nav__toggle,
    .hero__buttons,
    .cta,
    .footer__social {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ===== DASHBOARD CAROUSEL ===== */
.dashboard-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.dashboard-screenshot {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dashboard-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.dashboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dashboard-screenshot:hover .dashboard-overlay {
    transform: translateY(0);
}

.dashboard-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.dashboard-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.carousel-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* ===== GETWAITLIST WIDGET CUSTOMIZATION ===== */
#getWaitlistContainer {
    max-width: 500px;
    margin: 0 auto 1rem;
}

/* Style GetWaitlist to match your design */
#getWaitlistContainer input,
#getWaitlistContainer button {
    font-family: var(--font-body) !important;
}

#getWaitlistContainer input {
    font-size: 16px !important;
}

@media screen and (max-width: 768px) {
    #getWaitlistContainer {
        max-width: 100%;
    }
    
    .dashboard-carousel {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .dashboard-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .dashboard-overlay h4 {
        font-size: 1rem;
    }
    
    .dashboard-overlay p {
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        bottom: 0.5rem;
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .carousel-btn {
        padding: 0.4rem;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
}

/* ===== SIMPLE DASHBOARD IMAGE ===== */
.app-preview {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.app-screen {
    position: relative;
    width: 100%;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

