/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Image optimization: prevent layout shift */
img {
    height: auto;
    max-width: 100%;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

a:active {
    color: inherit;
}

/* Aspect ratio containers for stable layout */
.main-image img {
    aspect-ratio: 8/5;
    object-fit: cover;
}

.floating-image img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

.mobile-screen img {
    aspect-ratio: 1/2;
    object-fit: cover;
}

.booking-step img {
    aspect-ratio: 1/2;
    object-fit: cover;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation - Mobile First */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    width: 100%;
}

.nav-container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
}

.brand-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

/* Styled brand with blue background and specific border radius */
.styled-brand {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 12px 0px 12px 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.nav-links {
    display: none;
}

.nav-cta {
    display: none;
}

.nav-link-secondary {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    padding: 0.75rem;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
    background: #f8fafc;
    color: #2563eb;
}

.mobile-nav-link-secondary {
    padding: 0.75rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-nav-link-secondary:hover {
    background: #f8fafc;
    color: #2563eb;
}

.mobile-nav-link-primary {
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 0.5rem;
}

.mobile-nav-link-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section - Mobile First */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-text {
    color: #0f172a;
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.hero-badge i {
    width: 14px;
    height: 14px;
    color: #2563eb;
    flex-shrink: 0;
}

.badge-text {
    color: #2563eb;
    white-space: nowrap;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
    word-wrap: break-word;
    hyphens: auto;
}

.title-highlight {
    color: #2563eb;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #64748b;
    max-width: 100%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    align-items: center;
}

.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: 1px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

.hero-note {
    font-size: 0.875rem;
    color: #64748b;
    text-align: left;
    max-width: 100%;
}

/* Hero Image and Floating Elements - Mobile First */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-image-bg {
    width: 100%;
    height: 300px;
    max-width: 400px;
    background-image: url('../img/woman-at-nail-salon-door.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image-bg:hover {
    transform: scale(1.02);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 10;
}


/* Appointment Notification */
.appointment-notification {
    top: 15%;
    left: 10%;
    display: block;
}

.notification-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
    min-width: 140px;
    max-width: 160px;
}

.notification-icon {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.notification-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.notification-details {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 500;
}

/* Revenue Card */
.revenue-card {
    bottom: 20%;
    right: 10%;
    display: block;
}

.revenue-display {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
    min-width: 130px;
    max-width: 150px;
}

.revenue-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.revenue-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.revenue-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.revenue-change {
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 500;
    margin-top: 0.25rem;
}


/* Legacy illustration styles for backward compatibility */
.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.illustration-container svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

svg.lucide.lucide-check-circle {
    color: white !important;
}

.benefit-illustration {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.benefit-illustration svg {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Section CTA - Mobile First */
.section-cta {
    margin-top: 1.5rem;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(37, 99, 235, 0.1) 50%, transparent 52%);
    opacity: 0.5;
}

.gradient-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.gradient-card::before {
    background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: inherit;
    line-height: 1.3;
}

.cta-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: inherit;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
}

.gradient-card .btn-primary {
    background: white;
    color: #2563eb;
    border: 1px solid white;
}

.gradient-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.gradient-card .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.gradient-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Features Section - Mobile First */
.features {
    padding: 2rem 0;
    background: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
    --fill-top: 100%;
}

/* Liquid Gel Fill Effect */
.features::before {
    content: '';
    position: absolute;
    top: 98%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(165deg, 
        rgba(255, 105, 180, 0.85) 0%, 
        rgba(255, 20, 145, 0.121) 30%, 
        rgba(255, 68, 0, 0.097) 60%, 
        rgba(255, 192, 203, 0.55) 100%
    );
    z-index: 1;
    transform-origin: bottom left;
}

/* Wave Animation for Liquid Surface */
.features::after {
    content: '';
    position: absolute;
    top: 96%;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 60" fill="none"><path d="M0 35 Q100 15 200 35 T400 35 V60 H0 Z" fill="%23ff69b4" opacity="0.9"/><path d="M0 40 Q100 25 200 40 T400 40 V60 H0 Z" fill="%23ff1493" opacity="0.7"/><path d="M0 45 Q100 30 200 45 T400 45 V60 H0 Z" fill="%23ff4500" opacity="0.5"/></svg>') repeat-x;
    background-size: 400px 60px;
    z-index: 1;
    transform-origin: bottom left;
}

/* Additional wave layers for more realistic effect */
.features .liquid-wave-layer {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    top: calc(var(--fill-top, 100%) - 10px);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 40" fill="none"><path d="M0 25 Q100 10 200 25 T400 25 V40 H0 Z" fill="%23ff69b4" opacity="0.6"/></svg>') repeat-x;
    background-size: 400px 40px;
    animation: liquidWave2 10s ease-in-out infinite;
    transition: top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    opacity: 0;
    z-index: 1;
    transform: skewY(-2deg);
    transform-origin: bottom left;
}

.features.scrolled .liquid-wave-layer {
    top: calc(var(--fill-top, 0%) - 10px);
    opacity: 1;
}

/* Bubbles Effect */
.features .bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(103, 108, 214, 0.5), rgba(255, 106, 141, 0.54));
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    animation: bubbleRise 6s linear infinite;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.features .bubble:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.features .bubble:nth-child(2) {
    width: 12px;
    height: 12px;
    left: 25%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.features .bubble:nth-child(3) {
    width: 6px;
    height: 6px;
    left: 40%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.features .bubble:nth-child(4) {
    width: 10px;
    height: 10px;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.features .bubble:nth-child(5) {
    width: 14px;
    height: 14px;
    left: 75%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.features .bubble:nth-child(6) {
    width: 9px;
    height: 9px;
    left: 85%;
    animation-delay: 5s;
    animation-duration: 8s;
}

@keyframes bubbleRise {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateX(10px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-15px) scale(1);
    }
    90% {
        opacity: 0.7;
        transform: translateX(5px) scale(0.9);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(20px) scale(0.3);
    }
}

/* Show bubbles only when liquid is present */
.features.scrolled .bubble {
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.3;
}

.section-description {
    font-size: 1rem;
    color: #64748b;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 192, 203, 0.1) 0%, 
        rgba(255, 182, 193, 0.05) 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 105, 180, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    color: #2563eb;
    padding: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #ff1493;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.feature-highlight {
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(255, 105, 180, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #e91e63;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover .highlight-text {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.15));
    border-color: rgba(255, 20, 147, 0.4);
    color: #ff1493;
    transform: scale(1.05);
}

/* Benefits Section - Mobile First */
.benefits {
    padding: 3rem 0;
    background: #f8fafc;
    width: 100%;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.benefits-text {
    color: #0f172a;
    text-align: center;
    width: 100%;
}

.benefits-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.3;
}

.benefits-text p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    width: 100%;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
}

.benefit-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section - Mobile First */
.testimonials {
    padding: 3rem 0;
    background: #ffffff;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.testimonial-content p {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.author-info h4 {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

.rating {
    font-size: 1.1rem;
}

/* Pricing Section - Mobile First */
.pricing {
    padding: 3rem 0;
    background: #f8fafc;
    width: 100%;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.3;
}

.price-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.price-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(37, 99, 235, 0.05) 50%, transparent 52%);
    opacity: 0.5;
}

.trial-price {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trial-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.trial-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c55e;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.1);
}

.limited-time {
    font-size: 0.75rem;
    color: #ef4444;
    font-style: italic;
    margin-top: 0.25rem;
}

.regular-price {
    text-align: center;
    position: relative;
    z-index: 1;
}

.then-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Compact Pricing Features - Mobile First */
.pricing-features-compact {
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-grid .feature-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.feature-grid .feature-item i {
    width: 18px;
    height: 18px;
    color: #2563eb;
    flex-shrink: 0;
}

.feature-grid .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f172a;
}

.feature-details {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.feature-list .feature {
    padding: 0.3rem 0;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feature-list .feature i {
    width: 14px;
    height: 14px;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-primary {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    max-width: 280px;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.pricing-note {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    text-align: center;
}

.pricing-guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-badge i {
    width: 28px;
    height: 28px;
    color: #2563eb;
}

.guarantee-text strong {
    color: #2563eb;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.guarantee-text p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Pricing Sidebar - Mobile First */
.pricing-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.pricing-testimonial {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-testimonial blockquote {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    quotes: '"' '"' ''' ''';
}

.pricing-testimonial blockquote:before {
    content: open-quote;
    font-size: 1.5rem;
    color: #2563eb;
    vertical-align: top;
    line-height: 1;
}

.pricing-testimonial blockquote:after {
    content: close-quote;
    font-size: 1.5rem;
    color: #2563eb;
    vertical-align: top;
    line-height: 1;
}

.pricing-testimonial cite {
    color: #64748b;
    font-size: 0.85rem;
    font-style: normal;
}

.pricing-testimonial cite strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.pricing-benefits {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-benefits h4 {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-benefits ul {
    list-style: none;
    padding: 0;
}

.pricing-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
}

.pricing-benefits li i {
    width: 14px;
    height: 14px;
    color: #2563eb;
    flex-shrink: 0;
}

/* Final CTA Section - Mobile First */
.final-cta {
    padding: 3rem 0;
    background: #2563eb;
    text-align: center;
    color: white;
    width: 100%;
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.cta-secondary:hover {
    background: white;
    color: #2563eb;
}

.cta-guarantee {
    opacity: 0.9;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.cta-guarantee i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ==========================
   FREE ACCESS SECTION
   ========================== */

.free-access-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.free-access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.free-access-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.free-access-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.mobile-frame:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.dynamic-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.free-access-info {
    padding: 0 20px;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.free-badge i {
    width: 18px;
    height: 18px;
}

.free-access-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.free-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
}

.value-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    width: 14px;
    height: 14px;
    color: white;
}

.free-access-cta {
    text-align: left;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-xl i {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.cta-guarantee {
    display: flex;
    align-items: left;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.cta-guarantee i {
    width: 16px;
    height: 16px;
    color: #2563eb;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .free-access-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .free-access-visual {
        display: none;
    }

    .free-access-info {
        padding: 0;
    }

    .free-access-cta {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .free-access-section {
        padding: 60px 0;
    }

    .free-access-info h2 {
        font-size: 2rem;
    }

    .mobile-frame {
        width: 200px;
        height: 400px;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .free-access-info h2 {
        font-size: 1.75rem;
    }

    .free-subtitle {
        font-size: 1rem;
    }

    .value-points {
        gap: 12px;
    }

    .value-point {
        font-size: 0.875rem;
    }

    .btn-xl {
        width: 100%;
        padding: 18px 24px;
    }
}

/* Discrete Login Button */
.btn-login-discrete {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-top: 12px;
}

.btn-login-discrete:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.free-access-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .hero-cta {
        align-items: center;
        text-align: center;
    }

    .btn-login-discrete {
        font-size: 0.8125rem;
        margin-top: 8px;
    }
}

@media (min-width: 769px) {
    .hero-cta {
        align-items: flex-start;
    }

    .cta-buttons-group {
        align-items: center;
    }
}

/* Footer - Mobile First */
.footer {
    background: #0f172a;
    color: white;
    padding: 2rem 0 1rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
    font-size: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Tablet Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 1200px;
    }
    
    .nav-container {
        padding: 0 2rem;
        max-width: 1200px;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        color: #64748b;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: #2563eb;
    }

    .nav-link-secondary {
        display: inline-block;
        color: #64748b;
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .nav-link-secondary:hover {
        color: #2563eb;
        background: #f8fafc;
    }

    .nav-cta {
        display: inline-block;
        background: #2563eb;
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #2563eb;
    }

    .nav-cta:hover {
        background: #1d4ed8;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .btn {
        width: auto;
        max-width: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-author {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .pricing-container {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
    
    .price-container {
        flex-direction: row;
        align-items: flex-end;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-guarantee {
        flex-direction: row;
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-guarantee {
        flex-direction: row;
        justify-content: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    /* Responsive hero image */
    .hero-image-container {
        min-height: 400px;
    }
    
    .hero-image-bg {
        height: 400px;
        max-width: 450px;
    }
    
    /* Better positioning for floating elements on tablet */
    .appointment-notification {
        top: 10%;
        left: 5%;
    }
    
    .revenue-card {
        bottom: 15%;
        right: 5%;
    }
}

/* Desktop Responsive Design */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-container {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features {
        padding: 5rem 0;
    }
    
    .benefits {
        padding: 5rem 0;
    }
    
    .testimonials {
        padding: 5rem 0;
    }
    
    .pricing {
        padding: 5rem 0;
    }
    
    .final-cta {
        padding: 5rem 0;
    }
    
    /* Responsive hero image for desktop */
    .hero-image-container {
        min-height: 500px;
    }
    
    .hero-image-bg {
        height: 500px;
        max-width: 500px;
    }
    
    /* Adjust floating element positions for desktop */
    .appointment-notification {
        top: 5%;
        left: -3%;
    }
    
    .revenue-card {
        bottom: 10%;
        right: -3%;
    }
}

/* ===================================
   PRODUCT SHOWCASE SECTION
   =================================== */

.product-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
    pointer-events: none;
}

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

/* Showcase Cards */
.showcase-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.showcase-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Card Headers */
.showcase-header {
    margin-bottom: 1.5rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.showcase-badge i {
    width: 16px;
    height: 16px;
}

.showcase-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: #64748b;
    line-height: 1.6;
}

/* Primary Card - Desktop Dashboard */
.showcase-card.primary .showcase-badge {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.showcase-image.desktop {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.showcase-image.desktop img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

/* Image Stack - Desktop Dashboard */
.image-cascade {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.main-image {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.floating-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Simple Stack Animation */
.showcase-card.in-view .fall-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.showcase-card.in-view .fall-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.showcase-card.in-view .fall-3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}


.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(29, 78, 216, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    cursor: pointer;
}


.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.overlay-content i {
    width: 48px;
    height: 48px;
}

/* Secondary Card - Mobile Experience */
.showcase-card.secondary .showcase-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.showcase-card.secondary .showcase-image {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mobile-frame {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 32px;
    padding: 6px;
    margin: 0 auto;
    max-width: 320px;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}



.mobile-frame::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1px;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #6b7280, #374151);
    border-radius: 2px 0 0 2px;
    z-index: 20;
}

.mobile-screen {
    background: #000;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-screen::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}

.mobile-screen::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #1f2937 30%, transparent 70%);
    border-radius: 50%;
    z-index: 11;
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    position: relative;
    z-index: 5;
}

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 30px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 20px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dynamic-island::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

.dynamic-island::after {
    content: '';
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #374151 0%, #1f2937 100%);
    border-radius: 50%;
    border: 1px solid #4b5563;
}
/* Accent Card - Analytics */
.showcase-card.accent .showcase-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.showcase-image.analytics {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.showcase-image.analytics img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Analytics Stack */
.analytics-cascade {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.main-analytics {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.floating-chart,
.floating-report,
.floating-metric {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.floating-chart img,
.floating-report img,
.floating-metric img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Analytics Stack Animation */
.showcase-card.accent.in-view .fall-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.showcase-card.accent.in-view .fall-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.showcase-card.accent.in-view .fall-3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.showcase-card.accent.in-view .fall-4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.analytics-highlights {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Booking Card - Client Experience */
.showcase-card.booking .showcase-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.showcase-card.booking .showcase-image {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.booking-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.booking-step {
    flex: 1;
    max-width: 140px;
}

.booking-step img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-arrow {
    color: #2563eb;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Demo CTA Section - Redesigned */
.demo-cta-section {
    margin-top: 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.demo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.02'%3E%3Ccircle cx='7' cy='7' r='5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.demo-cta-container {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.demo-cta-content {
    text-align: left;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.demo-badge i {
    width: 16px;
    height: 16px;
}


.demo-cta-header {
    text-align: center;
}

.demo-cta-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-cta-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-cta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 180px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.button-content i {
    width: 20px;
    height: 20px;
}

.button-text {
    font-size: 1rem;
    font-weight: 600;
}

.button-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

.demo-trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    width: 16px;
    height: 16px;
}

.demo-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.feature-highlight {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-highlight .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-highlight .feature-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-highlight .feature-content {
    flex: 1;
}

.feature-highlight .feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1;
}

.feature-highlight .feature-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    flex-shrink: 0;
}

.stat-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .analytics-highlights {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .demo-cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .demo-cta-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 4rem 0;
    }

    .hero-visual {
        display: none;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-card {
        padding: 1.5rem;
    }
    
    .demo-cta-section {
        margin-top: 3rem;
    }
    
    .demo-cta-container {
        padding: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-cta-header h3 {
        font-size: 2rem;
    }
    
    .demo-cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        min-width: auto;
    }
    
    .success-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 120px;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .booking-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        rotate: 90deg;
    }
    
    .mobile-frame {
        max-width: 250px;
    }
    
    .demo-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-card {
        padding: 1.25rem;
    }
    
    .showcase-header h3 {
        font-size: 1.25rem;
    }
    
    .demo-cta-section {
        margin-top: 2rem;
    }
    
    .demo-cta-container {
        padding: 1.5rem;
    }
    
    .demo-cta-header h3 {
        font-size: 1.75rem;
    }
    
    .demo-trust-indicators {
        justify-content: center;
        gap: 1rem;
    }
    
    .mobile-frame {
        max-width: 200px;
    }
}