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

:root {
    /* Color Palette */
    --blue-600: #3B82F6;
    --blue-700: #1D4ED8;
    --green-600: #10B981;
    --green-700: #047857;
    --purple-600: #8B5CF6;
    --purple-700: #6D28D9;
    --orange-600: #F59E0B;
    --orange-700: #D97706;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 4rem 0;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

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

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--blue-600);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--blue-700);
}

.btn-white {
    background-color: var(--white);
    color: var(--blue-600);
}

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

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--blue-600);
}

.btn-ghost {
    background-color: transparent;
    color: var(--gray-700);
}

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

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--gray-50);
    padding: 0.5rem 0;
    margin-top: 4rem;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--gray-600);
}

.breadcrumb-list a {
    color: var(--blue-600);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--gray-700);
    font-weight: 500;
}

.nav {
    position: relative;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.powered-by {
    font-size: 0.625rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .powered-by {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .logo-text h1 {
        font-size: 1.125rem;
    }
    
    .powered-by {
        font-size: 0.45rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--blue-600);
}

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

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--gray-700);
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    gap: 1rem;
}

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

.mobile-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--purple-600) 100%);
    color: var(--white);
    padding: 6rem 0 6rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0 8rem;
        min-height: calc(100vh - 4rem);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 2rem 0;
        min-height: auto;
        margin-top: 0;
        display: block;
    }
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--blue-600) 0%, var(--purple-600) 50%, var(--blue-700) 100%);
    animation: gradientShift 20s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 5s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 15s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 25s;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
        align-items: start;
        padding-top: 2rem;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    .hero-content {
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 1rem;
        text-align: center;
    }
}

.hero-badge-top {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 2rem;
    opacity: 0;
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
        margin-bottom: 2rem;
        line-height: 1.05;
        letter-spacing: -0.025em;
    }
}

@media (max-width: 767px) {
    .hero-title {
        margin-bottom: 1.25rem;
        letter-spacing: -0.015em;
    }
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.title-line-1 {
    animation: slideInUp 1s ease-out 0.2s forwards;
}

.title-line-2 {
    animation: slideInUp 1s ease-out 0.4s forwards;
}

.title-line-3 {
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.highlight-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 4s ease-in-out infinite;
    font-weight: 800;
    position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        max-width: 85%;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
}

.stat-highlight {
    color: #FFD700;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

@media (min-width: 640px) {
    .hero-stats {
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        margin-bottom: 1.5rem;
    }
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    display: block;
    line-height: 1;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        margin-bottom: 1.5rem;
    }
}

.btn-primary-glow {
    position: relative;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--gray-900);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .btn-primary-glow {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
    }
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.btn-primary-glow:hover .btn-glow {
    animation: shine 0.6s ease-in-out;
}

.btn-secondary-sleek {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .btn-secondary-sleek {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
    }
}

.btn-secondary-sleek:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.btn-secondary-sleek:hover .btn-icon {
    transform: translate(2px, -2px);
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 60px;
    white-space: nowrap;
}

@media (max-width: 639px) {
    .hero-features .feature-item {
        white-space: normal;
        min-height: auto;
    }
}

.hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-features .feature-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
}

.hero-features .feature-icon svg {
    width: 1rem;
    height: 1rem;
}

.hero-features .feature-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
}

@media (max-width: 639px) {
    .hero-features .feature-item span {
        font-size: 0.8rem;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767px) {
    .hero-image {
        margin-top: 2rem;
        order: 2;
    }
}

.single-hero-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInRight 1s ease-out 1.6s both;
}

.single-hero-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .single-hero-image img {
        height: 24rem;
    }
}

@media (max-width: 767px) {
    .single-hero-image img {
        height: 16rem;
    }
}

.single-hero-image:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    backdrop-filter: blur(1px);
}

/* Demo Popup Styles */
.demo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.demo-popup {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.demo-popup-overlay.show .demo-popup {
    transform: translateY(0);
}

.demo-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
    color: var(--gray-600);
    transition: all 0.2s ease;
    z-index: 1;
}

.demo-popup-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.demo-popup-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.demo-popup-content {
    padding: 2rem;
}

.demo-popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-popup-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.demo-popup-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 0.375rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.demo-form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .demo-popup-content {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .demo-form-buttons {
        flex-direction: column-reverse;
    }
    
    .demo-popup-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .demo-popup-overlay {
        padding: 0.5rem;
    }
    
    .demo-popup-content {
        padding: 1rem;
    }
    
    .demo-popup-header h2 {
        font-size: 1.25rem;
    }
}

/* Demo Success Styles */
.demo-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.demo-success h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.demo-success p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.demo-success .btn {
    margin-top: 1rem;
}

/* Demo Error Styles */
.demo-error {
    text-align: center;
    padding: 2rem 0;
}

.error-icon {
    width: 4rem;
    height: 4rem;
    background: var(--red-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.error-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.demo-error h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 767px) {
    .floating-card {
        display: none;
    }
}

.booking-card {
    top: 1rem;
    right: 1rem;
    min-width: 140px;
    animation-delay: 0s;
}

.revenue-card {
    bottom: 1rem;
    left: 1rem;
    min-width: 160px;
    animation-delay: 3s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--green-600);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.trend-up {
    width: 1rem;
    height: 1rem;
    background: var(--green-600);
    color: white;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.card-content {
    color: var(--gray-900);
}

.booking-time {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-600);
}

.booking-venue {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0.25rem 0;
}

.booking-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

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

.revenue-change {
    font-size: 0.875rem;
    color: var(--green-600);
    font-weight: 600;
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

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

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

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

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

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

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 48rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-icon.blue {
    background-color: var(--blue-600);
}

.feature-icon.green {
    background-color: var(--green-600);
}

.feature-icon.purple {
    background-color: var(--purple-600);
}

.feature-icon.orange {
    background-color: var(--orange-600);
}

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
}

.benefit-card.blue {
    background-color: rgba(59, 130, 246, 0.1);
}

.benefit-card.green {
    background-color: rgba(16, 185, 129, 0.1);
}

.benefit-card.purple {
    background-color: rgba(139, 92, 246, 0.1);
}

.benefit-card.orange {
    background-color: rgba(245, 158, 11, 0.1);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.blue .benefit-icon {
    background-color: var(--blue-600);
}

.green .benefit-icon {
    background-color: var(--green-600);
}

.purple .benefit-icon {
    background-color: var(--purple-600);
}

.orange .benefit-icon {
    background-color: var(--orange-600);
}

.benefit-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.stars {
    margin-bottom: 1rem;
}

.stars span {
    color: #FBB040;
    font-size: 1.25rem;
}

.testimonial-card p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background-color: var(--white);
}

.pricing-card {
    max-width: 28rem;
    margin: 0 auto;
    background-color: var(--white);
    border: 2px solid var(--blue-600);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue-600);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

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

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-600);
}

.price-period {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-info h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-info {
        text-align: left;
    }
    
    .contact-items {
        align-items: flex-start;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-icon svg {
    width: 1rem;
    height: 1rem;
}

.contact-icon.green {
    background-color: var(--green-600);
}

.contact-icon.purple {
    background-color: var(--purple-600);
}

.contact-item span {
    color: var(--gray-700);
}

.demo-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.demo-section h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

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

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-logo h3 {
    color: var(--blue-600);
    margin-bottom: 0.5rem;
}

.footer-logo .powered-by {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a,
.footer-column button {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.footer-column a:hover,
.footer-column button:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
}

.footer-legal span:hover {
    color: var(--white);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--blue-600);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1001;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .pulse-dot {
        animation: none;
    }
}

/* Focus styles */
.btn:focus,
a:focus,
button:focus {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
}