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

:root {
    /* Colors */
    --navy-dark: #0f172a;
    --navy: #1e293b;
    --navy-light: #334155;
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --green: #10b981;
    --purple: #8b5cf6;
    --orange: #f97316;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ===== RESPONSIVE IMAGES & MEDIA ===== */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
}

picture img {
    width: 100%;
    height: auto;
}

/* Responsive background images */
.hero-bg, .demo-card, .demo-stat {
    background-size: cover;
    background-position: center;
}

/* Mobile-specific image optimizations */
@media (max-width: 767px) {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .hero-demo {
        width: 100%;
        max-width: 100%;
    }
    
    .demo-card {
        width: 100%;
        aspect-ratio: auto;
    }
    
    .demo-stat {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }
    
    .service-icon, .solution-icon {
        width: 48px;
        height: 48px;
    }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    background: var(--blue);
    padding: 0.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.logo-icon svg {
    stroke: white;
}

/* Logo Image Styles (Responsive) */
.logo-image {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo .logo-image {
    height: 40px;
}

.footer-logo .logo-image {
    height: 50px;
    margin-bottom: 1rem;
}

/* Mobile responsive logo */
@media (max-width: 767px) {
    .logo-image {
        height: 32px;
    }
    
    .nav-logo .logo-image {
        height: 32px;
    }
    
    .footer-logo .logo-image {
        height: 40px;
    }
}

/* Tablet responsive logo */
@media (min-width: 768px) and (max-width: 1024px) {
    .logo-image {
        height: 36px;
    }
    
    .nav-logo .logo-image {
        height: 36px;
    }
    
    .footer-logo .logo-image {
        height: 45px;
    }
}

.logo-accent {
    color: var(--blue);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--blue);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-900);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.mobile-menu-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    color: var(--blue);
}

.mobile-menu-cta {
    margin-top: auto;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .nav .btn-primary {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .nav .btn-primary {
        display: none;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-800);
    border-color: var(--gray-600);
}

.btn-white {
    background: white;
    color: var(--gray-900);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: var(--navy-dark);
    color: white;
    padding: 2.5rem 0 5rem;
    overflow: hidden;
    margin-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    opacity: 0.95;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(59, 130, 246, 0.15), transparent);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size:  1.25rem;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 4.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
    width: 100%;
}

/* Enhanced CTA button styling */
.hero-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
    }
}

/* Tablet responsive */
@media (min-width: 641px) and (max-width: 1024px) {
    .hero-cta {
        gap: 1.25rem;
    }
    
    .hero-cta .btn {
        min-width: 200px;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.trust-item svg {
    stroke: var(--green);
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== HERO DEMO ===== */
.hero-demo {
    position: relative;
}

.demo-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.demo-dots span:nth-child(1) {
    background: #ef4444;
}

.demo-dots span:nth-child(2) {
    background: #eab308;
}

.demo-dots span:nth-child(3) {
    background: var(--green);
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.demo-chat {
    margin-bottom: 2rem;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 16px;
    max-width: 85%;
}

.chat-message.user {
    background: rgba(71, 85, 105, 0.5);
    margin-right: auto;
    border-top-left-radius: 4px;
}

.chat-message.ai {
    background: var(--blue);
    margin-left: auto;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

.ai-header strong {
    color: rgba(255, 255, 255, 0.9);
}

.ai-header span {
    color: rgba(255, 255, 255, 0.6);
}

.chat-message p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: white;
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.chat-typing span:nth-child(1) {
    animation-delay: -0.32s;
}

.chat-typing span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

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

.footer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
}

.demo-stat {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-icon {
    background: #dcfce7;
    padding: 0.75rem;
    border-radius: 12px;
}

.stat-icon svg {
    stroke: var(--green);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 600;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--navy-dark);
    color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-dark .section-title {
    color: white;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.section-dark .section-description {
    color: var(--gray-400);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-icon.blue {
    background: #dbeafe;
}

.service-icon.blue svg {
    stroke: var(--blue);
}

.service-icon.green {
    background: #d1fae5;
}

.service-icon.green svg {
    stroke: var(--green);
}

.service-icon.purple {
    background: #ede9fe;
}

.service-icon.purple svg {
    stroke: var(--purple);
}

.service-icon.orange {
    background: #fed7aa;
}

.service-icon.orange svg {
    stroke: var(--orange);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    transform: translateX(4px);
}

/* ===== SOLUTIONS GRID ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.solution-card {
    background: var(--navy);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.solution-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.solution-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--gray-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon svg {
    stroke: var(--blue);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.solution-card > p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    color: var(--gray-300);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #020617;
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: #64748b;
}

.social-link:hover svg {
    stroke: white;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
    font-weight: 400;
    transition: var(--transition);
    line-height: 1.4;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
}

.footer-status .status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .demo-stat {
        position: static;
        margin-top: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

 
 / *   = = = = =   E N H A N C E D   S P A C I N G   F O R   I N D U S T R I E S   P A G E S   = = = = =   * / 
 
 
 
 / *   I n c r e a s e   o v e r a l l   t e x t   l i n e - h e i g h t   f o r   b e t t e r   r e a d a b i l i t y   * / 
 
 b o d y   { 
 
         l i n e - h e i g h t :   1 . 8 ; 
 
 } 
 
 
 
 / *   H e r o   s e c t i o n   s p a c i n g   * / 
 
 . h e r o   { 
 
         p a d d i n g :   1 0 r e m   0   7 r e m ; 
 
 } 
 
 
 
 . h e r o   h 1   { 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         l i n e - h e i g h t :   1 . 2 5 ; 
 
 } 
 
 
 
 . h e r o   . l e a d   { 
 
         m a r g i n - b o t t o m :   3 r e m ; 
 
         l i n e - h e i g h t :   1 . 9 ; 
 
         f o n t - s i z e :   1 . 3 7 5 r e m ; 
 
 } 
 
 
 
 / *   S e c t i o n   s p a c i n g   * / 
 
 . s e c t i o n - f e a t u r e s , 
 
 . s e c t i o n - p r o b l e m , 
 
 . s e c t i o n - s o l u t i o n , 
 
 . s e c t i o n - r e s u l t s , 
 
 . s e c t i o n - h o w , 
 
 . s e c t i o n - f a q , 
 
 . s e c t i o n - c t a   { 
 
         p a d d i n g :   7 r e m   0 ; 
 
 } 
 
 
 
 / *   S e c t i o n   h e a d i n g s   * / 
 
 . s e c t i o n - f e a t u r e s   h 2 , 
 
 . s e c t i o n - p r o b l e m   h 2 , 
 
 . s e c t i o n - s o l u t i o n   h 2 , 
 
 . s e c t i o n - r e s u l t s   h 2 , 
 
 . s e c t i o n - h o w   h 2 , 
 
 . s e c t i o n - f a q   h 2 , 
 
 . s e c t i o n - c t a   h 2   { 
 
         m a r g i n - b o t t o m :   4 r e m ; 
 
         l i n e - h e i g h t :   1 . 3 ; 
 
 } 
 
 
 
 . t e x t - c e n t e r   { 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 / *   C a r d   s p a c i n g   i m p r o v e m e n t s   * / 
 
 . c a r d   { 
 
         p a d d i n g :   2 . 5 r e m ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         b a c k g r o u n d :   w h i t e ; 
 
         b o r d e r - r a d i u s :   1 6 p x ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - g r a y - 2 0 0 ) ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 
 } 
 
 
 
 . c a r d : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 
         b o x - s h a d o w :   0   8 p x   2 4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
 } 
 
 
 
 . c a r d   h 3   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         m a r g i n - t o p :   1 r e m ; 
 
         l i n e - h e i g h t :   1 . 4 ; 
 
         f o n t - s i z e :   1 . 3 7 5 r e m ; 
 
 } 
 
 
 
 . c a r d   p   { 
 
         l i n e - h e i g h t :   1 . 8 5 ; 
 
         c o l o r :   v a r ( - - g r a y - 6 0 0 ) ; 
 
         m a r g i n - b o t t o m :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d   u l   { 
 
         m a r g i n - t o p :   1 . 5 r e m ; 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
 } 
 
 
 
 . c a r d   l i   { 
 
         m a r g i n - b o t t o m :   1 r e m ; 
 
         l i n e - h e i g h t :   1 . 8 ; 
 
 } 
 
 
 
 / *   C a r d   i c o n   s p a c i n g   * / 
 
 . c a r d - i c o n   { 
 
         f o n t - s i z e :   3 r e m ; 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 / *   G r i d   s p a c i n g   * / 
 
 . g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g a p :   2 . 5 r e m ; 
 
 } 
 
 
 
 . g r i d - 2   { 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ; 
 
 } 
 
 
 
 . g r i d - 3   { 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ; 
 
 } 
 
 
 
 . m t - 3   { 
 
         m a r g i n - t o p :   3 r e m ; 
 
 } 
 
 
 
 / *   L e a d   p a r a g r a p h   s p a c i n g   * / 
 
 . l e a d   { 
 
         f o n t - s i z e :   1 . 2 5 r e m ; 
 
         l i n e - h e i g h t :   1 . 9 ; 
 
         c o l o r :   v a r ( - - g r a y - 6 0 0 ) ; 
 
         m a r g i n - b o t t o m :   2 . 5 r e m ; 
 
 } 
 
 
 
 / *   L i s t   s p a c i n g   i m p r o v e m e n t s   * / u l   { 
 
         l i s t - s t y l e :   n o n e ; 
 
         p a d d i n g :   0 ; 
 
 } 
 
 
 
 u l   l i   { 
 
         p a d d i n g - l e f t :   0 ; 
 
         m a r g i n - b o t t o m :   0 . 8 7 5 r e m ; 
 
 } 
 
 
 
 / *   P a r a g r a p h   s p a c i n g   * / 
 
 p   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
 } 
 
 
 
 / *   H e a d i n g   s p a c i n g   * / 
 
 h 1   { 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
 } 
 
 
 
 h 2   { 
 
         m a r g i n - b o t t o m :   2 . 5 r e m ; 
 
 } 
 
 
 
 h 3   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
 } 
 
 
 
 h 4   { 
 
         m a r g i n - b o t t o m :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 / *   C T A   s e c t i o n   s p e c i a l   s p a c i n g   * / 
 
 . s e c t i o n - c t a   { 
 
         p a d d i n g :   8 r e m   0 ; 
 
 } 
 
 
 
 . s e c t i o n - c t a   h 2   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
 } 
 
 
 
 . s e c t i o n - c t a   . l e a d   { 
 
         m a r g i n - b o t t o m :   2 . 5 r e m ; 
 
         m a x - w i d t h :   7 0 0 p x ; 
 
         m a r g i n - l e f t :   a u t o ; 
 
         m a r g i n - r i g h t :   a u t o ; 
 
 } 
 
 
 
 / *   M o b i l e   r e s p o n s i v e   s p a c i n g   a d j u s t m e n t s   * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . h e r o   { 
 
                 p a d d i n g :   7 r e m   0   4 r e m ; 
 
         } 
 
         
 
         . s e c t i o n - f e a t u r e s , 
 
         . s e c t i o n - p r o b l e m , 
 
         . s e c t i o n - s o l u t i o n , 
 
         . s e c t i o n - r e s u l t s , 
 
         . s e c t i o n - h o w , 
 
         . s e c t i o n - f a q , 
 
         . s e c t i o n - c t a   { 
 
                 p a d d i n g :   4 r e m   0 ; 
 
         } 
 
         
 
         . c a r d   { 
 
                 p a d d i n g :   2 r e m ; 
 
                 m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         } 
 
         
 
         . g r i d   { 
 
                 g a p :   1 . 5 r e m ; 
 
         } 
 
         
 
         h 2   { 
 
                 m a r g i n - b o t t o m :   2 r e m ; 
 
         } 
 
 } 
 
 
 
 / *   T a b l e t   r e s p o n s i v e   s p a c i n g   * / 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 9 p x )   a n d   ( m a x - w i d t h :   1 0 2 4 p x )   { 
 
         . s e c t i o n - f e a t u r e s , 
 
         . s e c t i o n - p r o b l e m , 
 
         . s e c t i o n - s o l u t i o n , 
 
         . s e c t i o n - r e s u l t s , 
 
         . s e c t i o n - h o w , 
 
         . s e c t i o n - f a q   { 
 
                 p a d d i n g :   5 r e m   0 ; 
 
         } 
 
         
 
         . g r i d   { 
 
                 g a p :   2 r e m ; 
 
         } 
 
 } 
 
 
 
 / *   = = = = =   C A R D   L A Y O U T   W I T H   I N L I N E   I C O N   A N D   H E A D I N G   = = = = =   * / 
 
 . c a r d - i c o n   { 
 
         f o n t - s i z e :   2 . 5 r e m ; 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         m a r g i n - r i g h t :   1 r e m ; 
 
         v e r t i c a l - a l i g n :   m i d d l e ; 
 
 } 
 
 
 
 . c a r d   h 3   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         m a r g i n - b o t t o m :   2 . 5 r e m   ! i m p o r t a n t ; 
 
         m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
         l i n e - h e i g h t :   1 . 4 ; 
 
         f o n t - s i z e :   1 . 3 7 5 r e m ; 
 
         v e r t i c a l - a l i g n :   m i d d l e ; 
 
 } 
 
 
 
 . c a r d   p   { 
 
         l i n e - h e i g h t :   1 . 8 5 ; 
 
         c o l o r :   v a r ( - - g r a y - 6 0 0 ) ; 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         m a r g i n - t o p :   2 r e m ; 
 
 } 
 
 
 
 . c a r d   u l   { 
 
         m a r g i n - t o p :   2 r e m ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
 } 
 
 
 
 . c a r d   l i   { 
 
         m a r g i n - b o t t o m :   1 . 2 5 r e m ; 
 
         l i n e - h e i g h t :   1 . 8 ; 
 
 } 
 
 
 
 / *   G r i d   s p a c i n g   * / 
 
 . g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g a p :   2 . 5 r e m ; 
 
 } 
 
 
 
 . g r i d - 2   { 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ; 
 
 } 
 
 
 
 . g r i d - 3   { 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ; 
 
 } 
 
 
 
 . m t - 3   { 
 
         m a r g i n - t o p :   3 r e m ; 
 
 } 
 
 
/* ===== RESTAURANT PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.restaurant-hero {
    background: linear-gradient(135deg, #fef1f5 0%, #e0f2fe 100%);
    padding: 100px 0 80px;
    margin-top: 72px;
    overflow: hidden;
}

.restaurant-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    display: block;
    margin-top: 0.5rem;
}

.restaurant-hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-restaurant-primary {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
    letter-spacing: 0.05em;
}

.btn-restaurant-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
}

/* Dashboard Mockup */
.restaurant-hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    min-height: 500px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
}

.dashboard-chart {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.chart-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, #a855f7 0%, #ec4899 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bars .bar:hover {
    opacity: 0.8;
}

.dashboard-pie {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pie-label {
    text-align: center;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.pie-label strong {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-top: 4px;
}

/* Dashboard Annotations */
.dashboard-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-annotation-1 {
    top: 60px;
    left: -180px;
}

.dashboard-annotation-2 {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.dashboard-annotation-3 {
    top: 50%;
    right: -220px;
    transform: translateY(-50%);
    flex-direction: row-reverse;
}

.annotation-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
    text-align: left;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.annotation-arrow {
    width: 60px;
    height: 2px;
    background: var(--gray-400);
    position: relative;
}

.annotation-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--gray-400);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.annotation-arrow-right {
    width: 60px;
    height: 2px;
    background: var(--gray-400);
    position: relative;
}

.annotation-arrow-right::after {
    content: '';
    position: absolute;
    left: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-right: 8px solid var(--gray-400);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Features Section */
.restaurant-features {
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.restaurant-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"1\" fill=\"white\" opacity=\"0.1\"/></svg>');
    opacity: 0.3;
}

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

.features-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.features-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    color: var(--gray-900);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Voice Assistant Section */
.restaurant-voice {
    padding: 100px 0;
    background: white;
}

.voice-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.voice-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voice-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.benefit-item strong {
    color: var(--gray-900);
}

.btn-view-case {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
    letter-spacing: 0.02em;
}

.btn-view-case:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
}

.voice-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-character svg {
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-annotation-1,
    .dashboard-annotation-2,
    .dashboard-annotation-3 {
        display: none;
    }
}

@media (max-width: 1024px) {
    .restaurant-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .voice-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .voice-illustration {
        order: -1;
    }
}

@media (max-width: 768px) {
    .restaurant-hero {
        padding: 80px 0 50px;
    }
    
    .dashboard-mockup {
        padding: 24px;
        min-height: 400px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-hero-title {
        font-size: 2rem;
    }
    
    .restaurant-hero-description {
        max-width: 100%;
    }
}

/* ===== CREATIVE RESULTS SECTION ===== */
.restaurant-results {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.results-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.25);
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.result-card-1 .result-icon svg {
    stroke: #10b981;
}

.result-card-2 .result-icon svg {
    stroke: #f59e0b;
}

.result-card-3 .result-icon svg {
    stroke: #8b5cf6;
}

.result-card:hover .result-icon {
    transform: scale(1.1) rotate(5deg);
}

.result-number {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: inline-block;
}

.result-symbol,
.result-symbol-before {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 8px;
}

.result-symbol-before {
    margin-left: 0;
    margin-right: 8px;
}

.result-label {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 12px;
}

.result-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.result-card:hover .result-glow {
    opacity: 1;
    bottom: -30%;
}

/* Number count-up animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-number.animated {
    animation: countUp 0.8s ease-out;
}

/* ===== CREATIVE CTA SECTION ===== */
.restaurant-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    animation: float-circle 20s infinite ease-in-out;
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    animation-delay: 5s;
}

.cta-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation-delay: 10s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.cta-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 20px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.6);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(5px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.cta-feature svg {
    stroke: #10b981;
    flex-shrink: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-results {
        padding: 60px 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .restaurant-cta {
        padding: 80px 0;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-cta-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===== MOBILE-ONLY DASHBOARD STATS ANIMATIONS ===== */

/* Desktop stays the same - just basic styling */
@media (min-width: 769px) {
    .stat-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
}

/* Mobile Creative Animations */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        animation: slideInFromBottom 0.8s ease-out;
    }
    
    .stat-card {
        position: relative;
        overflow: hidden;
        padding: 24px !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInScale 0.6s ease-out backwards;
    }
    
    .stat-card-primary {
        animation-delay: 0.1s;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white;
    }
    
    .stat-card-secondary {
        animation-delay: 0.2s;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
        color: white;
    }
    
    .stat-card-accent {
        animation-delay: 0.3s;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
        color: white;
    }
    
    .stat-card-success {
        animation-delay: 0.4s;
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
        color: white;
    }
    
    .stat-card .stat-label {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
        color: white !important;
        letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    /* Sparkle effect */
    .stat-sparkle {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
        border-radius: 50%;
        animation: sparkle 2s infinite ease-in-out;
    }
    
    .stat-card:nth-child(2) .stat-sparkle {
        animation-delay: 0.5s;
    }
    
    .stat-card:nth-child(3) .stat-sparkle {
        animation-delay: 1s;
    }
    
    .stat-card:nth-child(4) .stat-sparkle {
        animation-delay: 1.5s;
    }
    
    /* Wave effect on tap */
    .stat-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .stat-card:active::before {
        width: 300px;
        height: 300px;
    }
    
    /* Floating animation */
    .stat-card {
        animation: fadeInScale 0.6s ease-out backwards, float 3s ease-in-out infinite;
    }
    
    .stat-card:nth-child(1) {
        animation-delay: 0.1s, 0s;
    }
    
    .stat-card:nth-child(2) {
        animation-delay: 0.2s, 0.5s;
    }
    
    .stat-card:nth-child(3) {
        animation-delay: 0.3s, 1s;
    }
    
    .stat-card:nth-child(4) {
        animation-delay: 0.4s, 1.5s;
    }
}

/* Keyframe Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

/* Enhance counter animation for mobile */
@media (max-width: 768px) {
    .stat-counter {
        animation: countPulse 0.6s ease-out;
    }
}

@keyframes countPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== DESKTOP SPACING BETWEEN HEADER AND CONTENT ===== */
@media (min-width: 769px) {
    /* Add space after header/menu on desktop */
    .restaurant-hero,
    main > section:first-of-type,
    body > section:first-of-type {
        margin-top: 80px;
    }
    
    /* If using sticky/fixed header, add padding to body */
    body {
        padding-top: 0;
    }
    
    /* Specifically for restaurant page hero section */
    .restaurant-hero {
        padding-top: 120px !important;
    }
}

/* ===== SPACING BETWEEN ALL SECTIONS (DESKTOP) ===== */
@media (min-width: 769px) {
    /* Add consistent spacing between all major sections */
    .restaurant-hero,
    .restaurant-features,
    .restaurant-voice,
    .restaurant-results,
    .restaurant-cta {
        margin-bottom: 80px;
    }
    
    /* Larger spacing for hero section */
    .restaurant-hero {
        margin-bottom: 100px;
    }
    
    /* Add padding between sections for better visual separation */
    section + section {
        margin-top: 60px;
    }
    
    /* No bottom margin on last section before footer */
    .restaurant-cta {
        margin-bottom: 0;
    }
}

/* Mobile - keep tighter spacing */
@media (max-width: 768px) {
    .restaurant-hero,
    .restaurant-features,
    .restaurant-voice,
    .restaurant-results,
    .restaurant-cta {
        margin-bottom: 40px;
    }
    
    .restaurant-hero {
        margin-bottom: 50px;
    }
}

/* ===== POOL SERVICES PAGE - CREATIVE ANIMATIONS ===== */

/* Pool Hero Section */
.pool-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #fef1f5 0%, #e0f2fe 50%, #f0f9ff 100%);
    overflow: hidden;
}

.pool-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    animation: float-shape 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 30px) rotate(270deg);
        opacity: 0.6;
    }
}

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

.pool-hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.pool-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 40px;
}

.title-line-1,
.title-line-2 {
    display: block;
    animation: slideInUp 0.6s ease-out backwards;
}

.title-line-1 {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    animation-delay: 0.4s;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--gray-600);
    margin-top: 16px;
    animation: slideInUp 0.6s ease-out 0.6s backwards;
}

/* Animated Button */
.btn-pool-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out 0.8s backwards;
}

.btn-pool-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pool-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pool-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-pool-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Mini Stats */
.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: slideInUp 0.6s ease-out 1s backwards;
}

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

.mini-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countPulse 1s ease-out;
}

.mini-stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

/* Animated Description Section */
.pool-description-section {
    margin-top: 80px;
    animation: fadeIn 0.8s ease-out 1.2s backwards;
}

.description-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.description-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.2);
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.description-icon {
    display: inline-flex;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.description-icon svg {
    stroke: url(#iconGradient);
}

.description-card:hover .description-icon {
    transform: rotate(5deg) scale(1.1);
}

.description-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.description-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.highlight-text {
    color: #a855f7;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: highlight-pulse 2s infinite;
}

@keyframes highlight-pulse {
    0%, 100% {
        color: #a855f7;
    }
    50% {
        color: #ec4899;
    }
}

.description-decoration {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 8px;
}

.deco-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    animation: deco-bounce 1.5s infinite ease-in-out;
}

.deco-circle:nth-child(1) {
    animation-delay: 0s;
}

.deco-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.deco-circle:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes deco-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Reuse restaurant-hero grid */
.pool-hero-grid {
    grid-template-columns: 1fr 1fr;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pool-hero {
        padding: 100px 0 60px;
    }
    
    .pool-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pool-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-mini {
        gap: 20px;
    }
    
    .mini-stat-number {
        font-size: 1.5rem;
    }
    
    .description-card {
        padding: 30px;
    }
    
    .description-icon {
        width: 70px;
        height: 70px;
    }
    
    .description-title {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== NEW DASHBOARD STATS - HIGHLY ANIMATED ===== */
.dashboard-stats-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card-new {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardSlideIn 0.6s ease-out backwards;
    overflow: hidden;
}

.stat-card-new:nth-child(1) { animation-delay: 0.1s; }
.stat-card-new:nth-child(2) { animation-delay: 0.2s; }
.stat-card-new:nth-child(3) { animation-delay: 0.3s; }
.stat-card-new:nth-child(4) { animation-delay: 0.4s; }

.stat-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.4s ease;
}

.stat-card-new:hover::before {
    width: 100%;
    opacity: 0.1;
}

.stat-primary::before { background: linear-gradient(180deg, #3b82f6, #8b5cf6); }
.stat-danger::before { background: linear-gradient(180deg, #ef4444, #ec4899); }
.stat-info::before { background: linear-gradient(180deg, #06b6d4, #3b82f6); }
.stat-success::before { background: linear-gradient(180deg, #10b981, #34d399); }

.stat-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.stat-icon-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconPulse 2s infinite ease-in-out;
}

.stat-primary .stat-icon-badge {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.stat-danger .stat-icon-badge {
    background: linear-gradient(135deg, #fee2e2, #fce7f3);
}

.stat-info .stat-icon-badge {
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.stat-success .stat-icon-badge {
    background: linear-gradient(135deg, #d1fae5, #dcfce7);
}

.stat-icon-badge svg {
    animation: iconFloat 3s infinite ease-in-out;
}

.stat-primary .stat-icon-badge svg { stroke: #3b82f6; }
.stat-danger .stat-icon-badge svg { stroke: #ef4444; }
.stat-info .stat-icon-badge svg { stroke: #06b6d4; }
.stat-success .stat-icon-badge svg { stroke: #10b981; }

.stat-content-new {
    flex: 1;
    z-index: 1;
}

.stat-label-new {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value-new {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.stat-number-new {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-trend {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    background: #dcfce7;
    color: #16a34a;
}

.trend-negative {
    background: #fee2e2;
    color: #dc2626;
}

.stat-date {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.stat-ring {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.6;
}

.progress-ring {
    transform: rotate(0deg);
}

.progress-ring-fill {
    animation: ringProgress 2s ease-out forwards;
}

@keyframes ringProgress {
    from {
        stroke-dashoffset: 226;
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-stats-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card-new {
        padding: 20px;
    }
    
    .stat-number-new {
        font-size: 1.75rem;
    }
    
    .stat-ring {
        display: none;
    }
}

/* ===== REDUCE DASHBOARD ANNOTATION SIZE BY 30% ===== */
.restaurant-hero .dashboard-annotation {
    transform: scale(0.7);
    transform-origin: left center;
}

.restaurant-hero .dashboard-annotation-1 {
    transform: scale(0.7);
}

.restaurant-hero .dashboard-annotation-2 {
    transform: scale(0.7);
}

.restaurant-hero .dashboard-annotation-3 {
    transform: scale(0.7);
}

.restaurant-hero .annotation-text {
    font-size: 0.875rem;
}

/* ===== FIX DASHBOARD ANNOTATIONS - PREVENT CONTENT HIDING ===== */
.restaurant-hero .dashboard-annotation {
    transform: scale(0.7);
    z-index: 10;
    pointer-events: none;
    animation: fadeInFloat 1s ease-out, pulse 3s ease-in-out infinite;
}

.restaurant-hero .dashboard-annotation-1 {
    top: 15%;
    left: -5%;
    transform: scale(0.7) translateX(0);
}

.restaurant-hero .dashboard-annotation-2 {
    bottom: 45%;
    left: -8%;
    transform: scale(0.7) translateX(0);
}

.restaurant-hero .dashboard-annotation-3 {
    top: 20%;
    right: -8%;
    transform: scale(0.7) translateX(0);
}

/* Stronger glow animation */
@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.8));
    }
}

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(0.7) translateY(0);
    }
}

/* Add breathing animation */
.restaurant-hero .annotation-text {
    animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Make arrows more visible */
.restaurant-hero .annotation-arrow,
.restaurant-hero .annotation-arrow-right {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* Hide annotations on mobile to prevent overlap */
@media (max-width: 1024px) {
    .restaurant-hero .dashboard-annotation {
        display: none;
    }
}

/* ===== CRITICAL FIX: MOVE ANNOTATIONS OUTSIDE CONTENT AREAS ===== */
.restaurant-hero .dashboard-mockup {
    position: relative;
    padding: 40px; /* Add padding to give space for annotations */
}

.restaurant-hero .dashboard-annotation-1 {
    top: -60px !important;
    left: 50px !important;
    transform: scale(0.65) !important;
}

.restaurant-hero .dashboard-annotation-2 {
    bottom: -80px !important;
    left: 30px !important;
    transform: scale(0.65) !important;
}

.restaurant-hero .dashboard-annotation-3 {
    top: -40px !important;
    right: 20px !important;
    transform: scale(0.65) !important;
}

/* Ensure annotations have proper contrast */
.restaurant-hero .annotation-text {
    background: rgba(168, 85, 247, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 12px 18px !important;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

/* Alternative: Hide on smaller screens completely */
@media (max-width: 1200px) {
    .restaurant-hero .dashboard-annotation {
        display: none !important;
    }
}

/* ===== SMALLER DASHBOARD ANNOTATIONS (-30%) ===== */
.dashboard-annotation {
    transform: scale(0.7);
    transform-origin: left center;
}

.dashboard-annotation-1 {
    top: 15%;
    left: 102%;
}

.dashboard-annotation-2 {
    top: 50%;
    left: 102%;
}

.dashboard-annotation-3 {
    bottom: 15%;
    right: 102%;
    transform: scale(0.7);
    transform-origin: right center;
}

/* Adjust arrow sizes for smaller annotations */
.dashboard-annotation .annotation-arrow {
    width: 35px;
    height: 2px;
}

.dashboard-annotation .annotation-arrow::after {
    border-width: 4px 0 4px 6px;
}

.annotation-arrow-right::after {
    border-width: 4px 6px 4px 0;
}

/* ===== ADVANCED 3D DASHBOARD ANIMATIONS ===== */

/* Add perspective to dashboard container */
.dashboard-mockup {
    perspective: 2000px;
    transform-style: preserve-3d;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
    }
    50% {
        transform: translateY(-5px) rotateX(-1deg) rotateY(2deg);
    }
    75% {
        transform: translateY(-15px) rotateX(1deg) rotateY(-2deg);
    }
}

/* 3D Stat Cards with depth */
.dashboard-stats .stat-card {
    transform: translateZ(50px);
    transform-style: preserve-3d;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.2) inset,
        0 2px 20px rgba(255,255,255,0.1) inset;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: cardPopIn 0.8s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: translateZ(0) scale(0.8) rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateZ(50px) scale(1) rotateY(0deg);
    }
}

.dashboard-stats .stat-card:hover {
    transform: translateZ(80px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(168, 85, 247, 0.3),
        0 0 0 1px rgba(255,255,255,0.3) inset,
        0 5px 30px rgba(255,255,255,0.2) inset;
}

/* Animated stat numbers with 3D effect */
.stat-number {
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.2),
        0 0 20px rgba(255,255,255,0.3);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.2),
            0 0 20px rgba(255,255,255,0.3);
    }
    50% {
        text-shadow: 
            2px 2px 8px rgba(0,0,0,0.3),
            0 0 30px rgba(255,255,255,0.5),
            0 0 40px rgba(168, 85, 247, 0.4);
    }
}

/* 3D Bar Chart Animation */
.dashboard-chart {
    transform: translateZ(30px);
    transform-style: preserve-3d;
    animation: chartSlideIn 1s ease-out 0.5s backwards;
}

@keyframes chartSlideIn {
    0% {
        opacity: 0;
        transform: translateZ(0) translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateZ(30px) translateY(0) rotateX(0deg);
    }
}

.chart-bars {
    transform-style: preserve-3d;
}

.chart-bars .bar {
    position: relative;
    transform-style: preserve-3d;
    animation: barGrow 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) backwards;
    transition: all 0.3s ease;
}

.chart-bars .bar:nth-child(1) { animation-delay: 0.6s; }
.chart-bars .bar:nth-child(2) { animation-delay: 0.7s; }
.chart-bars .bar:nth-child(3) { animation-delay: 0.8s; }
.chart-bars .bar:nth-child(4) { animation-delay: 0.9s; }
.chart-bars .bar:nth-child(5) { animation-delay: 1s; }
.chart-bars .bar:nth-child(6) { animation-delay: 1.1s; }
.chart-bars .bar:nth-child(7) { animation-delay: 1.2s; }
.chart-bars .bar:nth-child(8) { animation-delay: 1.3s; }
.chart-bars .bar:nth-child(9) { animation-delay: 1.4s; }

@keyframes barGrow {
    0% {
        height: 0 !important;
        opacity: 0;
        transform: translateZ(0) scaleY(0);
    }
    60% {
        transform: translateZ(20px) scaleY(1.1);
    }
    100% {
        opacity: 1;
        transform: translateZ(10px) scaleY(1);
    }
}

.chart-bars .bar:hover {
    transform: translateZ(30px) scaleY(1.05);
    box-shadow: 
        0 10px 30px rgba(168, 85, 247, 0.4),
        0 0 20px rgba(168, 85, 247, 0.3);
}

/* Add 3D depth to bars */
.chart-bars .bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateZ(1px);
}

.chart-bars .bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 8px;
}

/* 3D Pie Chart with rotation */
.dashboard-pie {
    transform: translateZ(40px);
    transform-style: preserve-3d;
    animation: pieRotateIn 1.2s ease-out 1s backwards;
}

@keyframes pieRotateIn {
    0% {
        opacity: 0;
        transform: translateZ(0) rotateY(180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateZ(40px) rotateY(0deg) scale(1);
    }
}

.dashboard-pie svg {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: pieFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes pieFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-10px) rotateZ(5deg);
    }
}

.dashboard-pie svg circle,
.dashboard-pie svg path {
    animation: pieSliceGrow 0.8s ease-out backwards;
    transform-origin: center;
}

.dashboard-pie svg path:nth-child(2) { animation-delay: 1.2s; }
.dashboard-pie svg path:nth-child(3) { animation-delay: 1.4s; }

@keyframes pieSliceGrow {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.pie-label {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: labelFadeIn 0.6s ease-out 1.6s backwards;
}

@keyframes labelFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Annotations with connecting lines */
.dashboard-annotation {
    transform: translateZ(60px);
    transform-style: preserve-3d;
    animation: annotationSlideIn 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.dashboard-annotation-1 { animation-delay: 0.5s; }
.dashboard-annotation-2 { animation-delay: 1s; }
.dashboard-annotation-3 { animation-delay: 1.5s; }

@keyframes annotationSlideIn {
    0% {
        opacity: 0;
        transform: translateZ(0) translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateZ(60px) translateX(0);
    }
}

.dashboard-annotation:hover {
    transform: translateZ(80px) scale(1.05);
}

.annotation-text {
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    50% {
        text-shadow: 
            0 2px 8px rgba(0,0,0,0.3),
            0 0 20px rgba(168, 85, 247, 0.5);
    }
}

/* Animated arrows with glow */
.annotation-arrow,
.annotation-arrow-right {
    position: relative;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
    }
}

.annotation-arrow::after,
.annotation-arrow-right::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    animation: arrowGlowPulse 2s ease-in-out infinite;
}

@keyframes arrowGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Particle effects for sparkle */
.stat-sparkle {
    animation: sparkleOrbit 3s ease-in-out infinite;
}

@keyframes sparkleOrbit {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(10px, -10px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(0, -20px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(-10px, -10px) scale(1.1);
        opacity: 0.7;
    }
}

/* Add glowing orbs around dashboard */
.dashboard-mockup::before,
.dashboard-mockup::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.dashboard-mockup::before {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    animation-delay: 0s;
}

.dashboard-mockup::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive: Reduce 3D effects on mobile */
@media (max-width: 768px) {
    .dashboard-mockup {
        perspective: 1000px;
    }
    
    .dashboard-stats .stat-card {
        transform: translateZ(20px);
    }
    
    .dashboard-stats .stat-card:hover {
        transform: translateZ(30px) scale(1.02);
    }
    
    .dashboard-chart,
    .dashboard-pie,
    .dashboard-annotation {
        transform: translateZ(15px);
    }
}

/* =========================================
   HIGH-END HERO VISUAL ANIMATIONS
   "The Best Brand in the World" Style
   ========================================= */

/* --- Container & Background --- */
.dashboard-mockup-container {
    position: relative;
    padding: 40px;
    perspective: 1000px;
}

.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: pulse-glow 8s ease-in-out infinite alternate;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #a855f7;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: #ec4899;
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

/* --- Main Mockup Card --- */
.animated-mockup {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 
        0 20px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 24px;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    animation: entry-scale-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
               float-z 6s ease-in-out infinite;
    overflow: visible; /* Allow floating elements to extend */
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 16px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.mockup-search-bar {
    height: 8px;
    width: 120px;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
    margin-left: 12px;
}

/* --- Dashboard Grid Layout --- */
.dashboard-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

@media (max-width: 1200px) {
    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Premium Stat Cards --- */
.dashboard-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card-premium {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.stat-card-premium:hover {
    transform: translateX(5px);
}

.stat-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
}

.stat-1 .stat-icon-wrapper { background: #fef2f2; color: #ef4444; }
.stat-2 .stat-icon-wrapper { background: #f0fdf4; color: #22c55e; }

.stat-info { flex: 1; }

.stat-card-premium .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.stat-card-premium .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-trend {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-trend.negative { background: #fef2f2; color: #ef4444; }
.stat-trend.positive { background: #f0fdf4; color: #22c55e; }

/* --- Dynamic Chart Area --- */
.dashboard-main-chart {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.chart-legend {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.legend-item { display: flex; align-items: center; gap: 6px; }
.dot-legend { width: 8px; height: 8px; border-radius: 50%; }
.color-1 { background: #a855f7; }
.color-2 { background: #e2e8f0; }

.chart-visual {
    height: 180px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pro-bar-group {
    display: flex;
    gap: 4px;
    height: 100%;
    align-items: flex-end;
    width: 24px;
}

.pro-bar {
    width: 8px;
    background: #a855f7;
    border-radius: 4px;
    height: 0;
    animation: bar-grow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--delay);
}

.pro-bar.secondary {
    background: #e2e8f0;
}

/* --- Floating Elements (Parallax) --- */
.floating-annotation, .floating-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
    animation: float-y 4s ease-in-out infinite;
}

.user-card {
    top: -20px;
    right: -20px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 220px;
    border: 1px solid rgba(0,0,0,0.05);
}

.user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.user-text .user-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.user-text .user-status {
    font-size: 0.7rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: type-text 3s steps(30, end) forwards;
    animation-delay: 1s;
}

.badge-revenue {
    bottom: 40px;
    left: -30px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1e293b;
    color: white;
    animation-delay: 1s; /* Offset float */
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-revenue span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Keyframe Animations --- */
@keyframes entry-scale-up {
    from { opacity: 0; transform: scale(0.9) translateY(40px) rotateX(10deg); }
    to { opacity: 1; transform: scale(1) translateY(0) rotateX(0); }
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-z {
    0%, 100% { transform: translateZ(0); }
    50% { transform: translateZ(20px); } /* Only works if parent has perspective */
}

@keyframes bar-grow {
    from { height: 0; }
    to { height: var(--height); }
}

@keyframes pulse-glow {
    from { transform: scale(1); opacity: 0.4; }
    to { transform: scale(1.1); opacity: 0.6; }
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes type-text {
    from { width: 0; }
    to { width: 100%; }
}

/* Mobile Adjustments for Hero Visual */
/* Mobile Adjustments for Hero Visual */
@media (max-width: 768px) {
    .dashboard-mockup-container {
        padding: 0;
        margin-top: 20px;
    }

    .animated-mockup {
        padding: 16px;
        border-radius: 16px;
    }

    .mockup-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    /* Stack the main grid */
    .dashboard-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Floating elements - Keep badge but position relative */
    .floating-annotation.user-card {
        display: none; /* Hide user card on mobile to save space */
    }

    .floating-badge.badge-revenue {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        animation: none;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

    /* Adjust Chart */
    .dashboard-main-chart {
        padding: 16px;
    }
    
    .chart-visual {
        height: 140px;
        padding-bottom: 0;
    }

    .pro-bar-group {
        width: 16px; /* Thinner bars */
        gap: 2px;
    }

    .pro-bar {
        width: 6px;
    }
    
    /* Adjust Stats */
    .stat-card-premium {
        padding: 16px;
    }
    
    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .stat-card-premium .stat-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pro-bar-group:nth-child(odd) {
        display: none; /* Show fewer bars on very small screens */
    }
    
    .chart-visual {
        justify-content: space-around;
    }
    
    .hero-decorative-circle {
        opacity: 0.3;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
        top: -20px;
        right: -20px;
    }
    
    .circle-2 {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: -20px;
    }
}


/* =========================================
   DOG TRAINER PAGE STYLES
   Creative Service Page Design
   ========================================= */

/* Hero Section */
.dog-trainer-hero {
    background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%);
    padding: 100px 0 80px;
    margin-top: 72px;
    overflow: hidden;
}

.dog-trainer-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dog-trainer-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.dog-trainer-hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 90%;
}

.btn-dog-trainer-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    letter-spacing: 0.05em;
}

.btn-dog-trainer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.dog-decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: pulse-glow 8s ease-in-out infinite alternate;
}

.dog-decorative-circle.circle-1 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: -50px;
    right: -50px;
}

.dog-decorative-circle.circle-2 {
    width: 250px;
    height: 250px;
    background: #3b82f6;
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

/* Animated Statistics Section */
.dog-trainer-stats {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.stats-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card-animated {
    background: white;
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-card-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card-animated:hover::before {
    transform: scaleX(1);
}

.stat-card-animated:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.stat-icon-big {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-card-animated.stat-1 .stat-icon-big svg {
    stroke: #10b981;
}

.stat-card-animated.stat-2 .stat-icon-big svg {
    stroke: #f59e0b;
}

.stat-card-animated.stat-3 .stat-icon-big svg {
    stroke: #8b5cf6;
}

.stat-card-animated:hover .stat-icon-big {
    transform: scale(1.1) rotate(5deg);
}

.stat-number-big {
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: inline-block;
}

.stat-symbol-big {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 8px;
}

.stat-label-big {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 12px;
}

/* Comparison Table Section */
.dog-trainer-comparison {
    padding: 100px 0;
    background: #f8fafc;
}

.comparison-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 16px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 60px;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.before-column {
    border: 2px solid #ef4444;
}

.after-column {
    border: 2px solid #10b981;
    position: relative;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 10px 60px rgba(16, 185, 129, 0.4);
    }
}

.column-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.before-column .column-header svg {
    stroke: #ef4444;
}

.after-column .column-header svg {
    stroke: #10b981;
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: #f9fafb;
}

.comparison-item .item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comparison-item .item-text strong {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.comparison-item .item-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Glassmorphism Features Section */
.dog-trainer-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #6d28d9 0%, #4338ca 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.dog-trainer-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"1\" fill=\"white\" opacity=\"0.1\"/></svg>');
    opacity: 0.3;
}

.dog-trainer-features .container {
    position: relative;
    z-index: 1;
}

.dog-trainer-features .features-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.dog-trainer-features .features-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.dog-trainer-features .features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

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

.feature-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-glass {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-glass svg {
    stroke: white;
}

.feature-card-glass h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: white;
}

.feature-card-glass p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Dog Trainer CTA Section */
.dog-trainer-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Responsive Design for Dog Trainer Page */
@media (max-width: 1024px) {
    .dog-trainer-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dog-trainer-hero {
        padding: 80px 0 50px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-glass {
        grid-template-columns: 1fr;
    }
    
    .dog-trainer-hero-description {
        max-width: 100%;
    }
}


/* =========================================
   DENTIST EMERGENCY TRIAGE DESIGN
   Unique Design #2
   ========================================= */

/* Emergency Hero */
.dentist-emergency-hero {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    padding: 120px 0 80px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.dentist-emergency-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.emergency-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.emergency-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.emergency-hero-title .gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emergency-hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.emergency-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-emergency-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #dc2626;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    width: fit-content;
}

.btn-emergency-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.trust-proof {
    display: flex;
    gap: 24px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

/* Triage Dashboard */
.emergency-visual {
    position: relative;
    margin-top: 40px;
}

.triage-dashboard {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.triage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.status-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1f2937;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.time-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6b7280;
}

.emergency-queue {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emergency-call {
    background: white;
    border-left: 4px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.emergency-call.urgent {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.emergency-call.moderate {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.emergency-call.low {
    border-left-color: #10b981;
    background: #f0fdf4;
}

.call-priority {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.priority-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.priority-badge.severe {
    background: #dc2626;
    color: white;
}

.priority-badge.moderate {
    background: #f59e0b;
    color: white;
}

.priority-badge.low {
    background: #10b981;
    color: white;
}

.call-time {
    font-size: 0.875rem;
    color: #6b7280;
}

.call-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.call-details p {
    font-size: 0.875rem;
    color: #6b7280;
}

.ai-confidence {
    margin-top: 12px;
}

.ai-confidence span {
    font-size: 0.75rem;
    color: #6b7280;
}

.confidence-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #22c55e);
    transition: width 1s ease;
}

/* Triage Stats */
.dentist-triage-stats {
    padding: 100px 0;
    background: #f9fafb;
}

.triage-stats-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 16px;
}

.triage-stats-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 60px;
}

.triage-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.triage-stat-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #e5e7eb;
}

.triage-stat-card.severe-stat {
    border-top-color: #dc2626;
}

.triage-stat-card.moderate-stat {
    border-top-color: #f59e0b;
}

.triage-stat-card.low-stat {
    border-top-color: #10b981;
}

.triage-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stat-icon-emergency {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #f3f4f6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.severe-stat .stat-icon-emergency svg {
    stroke: #dc2626;
}

.moderate-stat .stat-icon-emergency svg {
    stroke: #f59e0b;
}

.low-stat .stat-icon-emergency svg {
    stroke: #10b981;
}

.stat-number-emergency {
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    display: inline-block;
}

.stat-symbol-emergency {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #6b7280;
    display: inline-block;
    margin-left: 8px;
}

.stat-label-emergency {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 16px 0 8px;
}

.stat-detail {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Triage Logic */
.dentist-triage-logic {
    padding: 100px 0;
    background: white;
}

.triage-logic-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 16px;
}

.triage-logic-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 60px;
}

.triage-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.triage-level {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.level-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.severe-level .level-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.moderate-level .level-header {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.low-level .level-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.level-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.severe-level .level-badge {
    background: #dc2626;
}

.moderate-level .level-badge {
    background: #f59e0b;
}

.low-level .level-badge {
    background: #10b981;
}

.level-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.level-questions {
    padding: 24px;
    background: white;
}

.level-questions p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #374151;
}

.level-examples {
    padding: 16px 24px;
    background: #f9fafb;
    font-size: 0.875rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

/* Emergency CTA */
.dentist-emergency-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.emergency-cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.emergency-cta-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.btn-emergency-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #dc2626;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

.btn-emergency-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.6);
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.trust-signal svg {
    stroke: #22c55e;
}

/* Responsive */
@media (max-width: 1024px) {
    .emergency-hero-content {
        max-width: 100%;
    }
    
    .emergency-visual {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .dentist-emergency-hero {
        padding: 80px 0 50px;
    }
    
    .triage-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-proof {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-trust-signals {
        flex-direction: column;
        gap: 16px;
    }
}


/* =========================================
   HVAC DISPATCH COMMANDER DESIGN
   Unique Design #3
   ========================================= */

/* Dispatch Hero */
.hvac-dispatch-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 120px 0 80px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.hvac-dispatch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.dispatch-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.temperature-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fca5a5;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.temperature-alert svg {
    stroke: #ef4444;
}

.dispatch-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.dispatch-hero-title .blue-glow {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dispatch-hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.dispatch-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    display: inline-block;
}

.metric-item span {
    font-size: 1.5rem;
    color: #60a5fa;
    margin-left: 4px;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.btn-dispatch-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3b82f6;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.btn-dispatch-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
}

/* Dispatch Board */
.dispatch-visual {
    position: relative;
    margin-top: 40px;
}

.dispatch-board {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.board-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.weather-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
}

.dispatch-queue {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dispatch-call {
    background: white;
    border-left: 4px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.dispatch-call.priority-critical {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.dispatch-call.priority-high {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.dispatch-call.priority-standard {
    border-left-color: #3b82f6;
    background: #eff6ff;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.priority-label {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.priority-label.critical {
    background: #dc2626;
}

.priority-label.high {
    background: #f59e0b;
}

.priority-label.standard {
    background: #3b82f6;
}

.call-timestamp {
    font-size: 0.875rem;
    color: #6b7280;
}

.call-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.call-address {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.ai-action {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
}

.tech-status {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.tech-badge {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Surge Stats */
.hvac-surge-stats {
    padding: 100px 0;
    background: #f9fafb;
}

.surge-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 16px;
}

.surge-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 60px;
}

.surge-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.surge-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.surge-card.without-ai {
    border: 2px solid #ef4444;
}

.surge-card.with-ai {
    border: 2px solid #10b981;
}

.surge-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.surge-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.surge-item {
    padding: 16px;
    border-radius: 12px;
}

.surge-item.bad {
    background: #fef2f2;
}

.surge-item.good {
    background: #f0fdf4;
}

.surge-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.surge-item.bad .surge-number {
    color: #dc2626;
}

.surge-item.good .surge-number {
    color: #10b981;
}

.surge-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.surge-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Dispatch Logic */
.hvac-dispatch-logic {
    padding: 100px 0;
    background: white;
}

.logic-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 60px;
}

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

.logic-step {
    background: #eff6ff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    stroke: white;
}

.logic-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.logic-step p {
    color: #6b7280;
}

.arrow-down {
    text-align: center;
    font-size: 2rem;
    color: #3b82f6;
    margin: 16px 0;
}

.logic-branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.logic-branch {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.branch-label {
    padding: 16px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-align: center;
}

.critical-branch .branch-label {
    background: #dc2626;
}

.standard-branch .branch-label {
    background: #3b82f6;
}

.branch-questions {
    padding: 24px;
}

.branch-questions p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #374151;
}

.branch-examples {
    padding: 16px 24px;
    background: #f9fafb;
    font-size: 0.875rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

/* HVAC CTA */
.hvac-dispatch-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.btn-hvac-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3b82f6;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.btn-hvac-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .dispatch-content {
        max-width: 100%;
    }
    
    .surge-comparison {
        grid-template-columns: 1fr;
    }
    
    .logic-branches {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hvac-dispatch-hero {
        padding: 80px 0 50px;
    }
    
    .dispatch-metrics {
        gap: 16px;
    }
}


/* =========================================
   REAL ESTATE LUXURY CONCIERGE DESIGN
   Unique Design #4
   ========================================= */

/* Luxury Hero */
.realestate-luxury-hero {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
    padding: 120px 0 80px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.luxury-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"60\" height=\"60\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"1\" cy=\"1\" r=\"0.5\" fill=\"rgba(217,119,6,0.1)\"/></svg>');
}

.luxury-hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217,119,6,0.2), rgba(245,158,11,0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217,119,6,0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.luxury-badge svg {
    fill: #f59e0b;
}

.luxury-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
}

.luxury-hero-title .gold-gradient {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.luxury-stats-inline {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.inline-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.stat-unit {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-left: 4px;
}

.stat-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.btn-luxury-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.4);
}

.btn-luxury-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(217, 119, 6, 0.6);
}

/* Property Showcase */
.luxury-prop-showcase {
    margin-top: 60px;
}

.property-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.prop-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px;
}

.prop-badge {
    background: #22c55e;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.prop-price {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: #f59e0b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
}

.prop-details {
    padding: 20px;
}

.prop-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.prop-specs {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.ai-status {
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Inquiry Notification */
.inquiry-notification {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.notif-time {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.notif-badge {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.notif-message {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.notif-ai-response {
    background: rgba(59,130,246,0.1);
    border-left: 3px solid #3b82f6;
    padding: 12px;
    border-radius: 8px;
}

.ai-label {
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.notif-ai-response p {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    margin: 0;
}

/* Qualification */
.realestate-qualification {
    padding: 100px 0;
    background: white;
}

.qualification-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 16px;
}

.qualification-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 60px;
}

.qualification-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.qual-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 32px;
    border: 2px solid transparent;
}

.qual-card.high-intent {
    border-color: #10b981;
}

.qual-card.low-intent {
    border-color: #9ca3af;
}

.qual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.qual-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.qual-badge.premium {
    background: #d97706;
}

.qual-badge.standard {
    background: #6b7280;
}

.qual-score {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.qual-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.qual-questions {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.qual-questions li {
    padding: 8px 0;
    color: #374151;
    font-size: 0.9375rem;
}

.qual-result {
    background: white;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    color: #6b7280;
}

.qual-result strong {
    color: #1f2937;
}

/* Results */
.realestate-results {
    padding: 100px 0;
    background: #f9fafb;
}

.results-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(217,119,6,0.2);
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    stroke: #d97706;
}

.result-number {
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-weight: 800;
    color: #d97706;
    line-height: 1;
    display: inline-block;
}

.result-unit {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #f59e0b;
    display: inline-block;
    margin-left: 8px;
}

.result-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 16px 0 8px;
}

.result-detail {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Luxury CTA */
.realestate-luxury-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217,119,6,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.luxury-cta-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.luxury-cta-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-luxury-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.4);
    position: relative;
    z-index: 1;
}

.btn-luxury-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(217, 119, 6, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .luxury-hero-content {
        max-width: 100%;
    }
    
    .qualification-flow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .realestate-luxury-hero {
        padding: 80px 0 50px;
    }
    
    .luxury-stats-inline {
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   HAIR SALON APPOINTMENT SHOWCASE DESIGN
   Unique Design #5
   ========================================= */

/* Salon Hero */
.salon-appointment-hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    padding: 120px 0 80px;
    margin-top: 72px;
}

.salon-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.salon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #ec4899;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.salon-badge svg {
    stroke: #ec4899;
}

.salon-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 24px;
}

.salon-hero-title .pink-highlight {
    color: #ec4899;
}

.salon-hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.salon-quick-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: #ec4899;
    line-height: 1;
}

.stat-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 8px;
}

.btn-salon-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3);
}

.btn-salon-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.5);
}

/* Calendar Preview */
.salon-calendar-preview {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.calendar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.live-indicator {
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 700;
}

.calendar-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-slot {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    background: #f9fafb;
    position: relative;
}

.time-slot.booked {
    background: #fdf2f8;
    border: 1px solid #f9a8d4;
}

.time-slot.booked.highlight {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border: 2px solid #ec4899;
}

.time-slot.available {
    background: #f0fdf4;
    border: 1px dashed #86efac;
}

.slot-time {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
}

.slot-details strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.slot-details span {
    font-size: 0.8125rem;
    color: #6b7280;
}

.slot-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ec4899;
    text-align: right;
}

.new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 700;
}

/* No-Show Section */
.salon-noshow-section {
    padding: 100px 0;
    background: white;
}

.noshow-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 60px;
}

.noshow-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-badge {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: #fdf2f8;
    padding: 20px 24px;
    border-radius: 12px;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services */
.salon-services {
    padding: 100px 0;
    background: #f9fafb;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 16px;
}

.services-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    stroke: #ec4899;
}

.service-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.service-automation {
    display: block;
    background: #f0fdf4;
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Results */
.salon-results {
    padding: 100px 0;
    background: white;
}

.results-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 60px;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-box {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
}

.result-value {
    margin-bottom: 16px;
}

.result-currency {
    font-size: 2rem;
    font-weight: 800;
    color: #ec4899;
}

.result-number {
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-weight: 800;
    color: #ec4899;
    line-height: 1;
}

.result-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f472b6;
    margin-left: 8px;
}

.result-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.result-note {
    font-size: 0.875rem;
    color: #6b7280;
}

/* CTA */
.salon-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.btn-salon-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #ec4899;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.btn-salon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .salon-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .salon-calendar-preview {
        order: -1;
    }
}

@media (max-width: 768px) {
    .salon-appointment-hero {
        padding: 80px 0 50px;
    }
    
    .salon-quick-stats {
        gap: 20px;
    }
    
    .time-slot {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .slot-price {
        text-align: left;
    }
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Tooltip for WhatsApp */
.whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 75px;
    bottom: 15px;
    background: #1e293b;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float::after {
        display: none;
    }
}
