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

:root {
    /* Color Palette */
    --primary-blue: #1E3A8A;
    --primary-blue-light: #3B82F6;
    --primary-blue-dark: #1E40AF;
    --accent-gold: #F59E0B;
    --accent-teal: #14B8A6;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --bg-light: #cedae7;
    --bg-white: #FFFFFF;
    --border-light: #E5E7EB;
    --success: #10B981;
    --error: #EF4444;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --element-spacing: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Animations */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--accent-teal);
    color: var(--text-white);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    flex: 1;
    justify-content: center;
}

.nav-logo .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        order: 1;
    }
    
    .nav-logo {
        order: 2;
        justify-content: flex-start;
        margin-left: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 4rem);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
        order: 3;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all var(--transition-fast);
        color: var(--text-dark);
    }
    
    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--primary-blue);
    }
    
    .nav-menu .btn {
        margin-top: 1rem;
        width: calc(100% - 4rem);
        justify-content: center;
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
    }
    
    /* Add overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 4rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 4rem);
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
}

.hero-text h1 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 200px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    z-index: 0;
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-stat-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.hero-stat-card:hover .hero-stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.hero-stat-content {
    position: relative;
    z-index: 1;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
    }
}

/* Section Layouts */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-light);
}

.section-divider {
    height: 4rem;
    background: linear-gradient(to bottom right, var(--primary-blue) 0%, var(--accent-teal) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    margin-top: -2rem;
    margin-bottom: -2rem;
}

/* Grid Layouts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Phone Screen Improvements */
.phone-mockup {
    max-width: 280px;
    margin: 0 auto;
    background: var(--primary-blue-dark);
    padding: 0.8rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 10, 50, 0.15);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1.5rem;
    background: var(--primary-blue-dark);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 10;
}

.phone-button {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
}

.phone-screen {
    background: var(--bg-white);
    border-radius: 1.5rem;
    overflow: hidden;
    height: 560px;
    position: relative;
}

.chat-interface {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    background: var(--primary-blue-light);
    color: white;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.chat-avatar {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    object-fit: cover;
}

.chat-title {
    flex: 1;
}

.chat-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.chat-status {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.chat-actions {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.chat-messages {
    flex: 1;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow-y: auto;
    background: #E5DDD5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bdbdbd' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.message-timestamp {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.5);
    margin: 0.5rem 0;
    background: rgba(225, 245, 254, 0.5);
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    align-self: center;
}

.message {
    max-width: 75%;
    padding: 0.5rem 0.7rem;
    border-radius: 0.7rem;
    font-size: 0.7rem;
    line-height: 1.3;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.message-time {
    font-size: 0.6rem;
    opacity: 0.6;
    position: absolute;
    bottom: 0.2rem;
    right: 0.5rem;
}

.user-message {
    align-self: flex-end;
    background: #DCF8C6;
    color: var(--text-dark);
    border-top-right-radius: 0;
}

.user-message p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

.user-message .message-time {
    color: rgba(0, 0, 0, 0.5);
}

.bot-message {
    align-self: flex-start;
    background: white;
    color: var(--text-dark);
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bot-message p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

.bot-message .message-time {
    color: rgba(0, 0, 0, 0.5);
}

.typing-indicator {
    align-self: flex-start;
    background: white;
    padding: 0.8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.typing-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

.typing-indicator span {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--text-light);
    border-radius: 50%;
    display: inline-block;
    animation: typing-dot 1s infinite ease-in-out;
}

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

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

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dot {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

.chat-input {
    display: flex;
    align-items: center;
    padding: 0.7rem;
    background: #F0F0F0;
    gap: 0.8rem;
    border-top: 1px solid var(--border-light);
}

.chat-input i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.chat-input input {
    flex: 1;
    background: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
}

.chat-input input:focus {
    outline: none;
}

/* Demo Section */
.demo {
    background: linear-gradient(135deg, #F1F5F9 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233B82F6' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.demo-content {
    position: relative;
    z-index: 2;
}

.demo-devices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.demo-phone {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    margin: 0 auto;
}

.demo-phone-frame {
    background: #1A1A1A;
    border-radius: 2rem;
    padding: 0.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.demo-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1.5rem;
    background: #1A1A1A;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 10;
}

.demo-phone-button {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
}

.demo-screen {
    background: #F0F0F0;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 500px;
    position: relative;
}

.demo-app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-chat-header {
    background: #075E54;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-chat-header i {
    font-size: 1.5rem;
}

.demo-chat-header span {
    font-weight: 600;
    font-size: 1rem;
}

.demo-chat-window {
    flex: 1;
    padding: 1rem;
    background: #E5DDD5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bdbdbd' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    font-size: 0.9rem;
    position: relative;
}

.demo-message.bot {
    align-self: flex-start;
    background: white;
    color: var(--text-dark);
    border-top-left-radius: 0;
}

.demo-message.bot p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

.demo-message.user {
    align-self: flex-end;
    background: #DCF8C6;
    color: var(--text-dark);
    border-top-right-radius: 0;
}

.demo-message.user p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

.demo-timestamp {
    font-size: 0.7rem;
    color: var(--text-light);
    position: absolute;
    right: 0.8rem;
    bottom: 0.3rem;
}

.demo-chat-input {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: #F0F0F0;
    gap: 0.8rem;
}

.demo-chat-input input {
    flex: 1;
    background: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
}

.demo-chat-input button {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-teal);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.demo-qr-container {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-qr-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 350px;
}

.demo-qr-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.demo-qr-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.demo-qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-blue);
}

.demo-or {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.demo-or::before, .demo-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-light);
}

.demo-or::before {
    left: 0;
}

.demo-or::after {
    right: 0;
}

.demo-or span {
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.demo-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.demo-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.demo-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.demo-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.demo-feature-card:hover .demo-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.demo-feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.demo-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    margin: 4rem 0 2rem;
}

.demo-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.demo-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .demo-features-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .demo-devices {
        flex-direction: column;
    }
    
    .demo-cta {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .demo-phone {
        display: none; /* Hide phone on mobile devices */
    }
    
    .demo-qr-container {
        width: 100%;
    }
    
    .demo-qr-card {
        width: 100%;
        max-width: 100%;
    }
    
    .demo-features-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Cards */
.contact-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-info-title {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

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

.contact-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.contact-action i {
    transition: transform var(--transition-fast);
}

.contact-action:hover {
    color: var(--accent-teal);
}

.contact-action:hover i {
    transform: translateX(3px);
}

.contact-social {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.contact-social p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 100%);
}

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Form Improvements */
.form-container {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
}

/* Contact Form Separator */
.contact-separator {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    color: var(--text-light);
    text-align: center;
}

.contact-separator::before,
.contact-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.contact-separator span {
    padding: 0 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Improvements */
.footer {
    position: relative;
    color: var(--text-white);
    margin-top: 3rem;
}

.footer-wave {
    height: 100px;
    overflow: hidden;
    position: relative;
    top: 1px;
}

.footer-wave svg {
    width: 100%;
    height: 100px;
    display: block;
}

.footer-content {
    background: #1E293B;
    padding: 4rem 0 2rem;
}

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

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

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

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.9rem;
}

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

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

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer-social-link:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-language select {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.footer-language select:focus {
    outline: none;
}

.footer-language select option {
    background: #1E293B;
    color: white;
}

/* Responsive Improvements */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
        text-align: center;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-brand {
        padding: 0 1rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
}

/* Business Section */
.business-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.business-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-teal));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-normal);
}

.business-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.business-card:hover::before {
    transform: scaleY(1);
}

.business-card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-teal) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.business-card:hover .business-card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.business-card-content {
    flex: 1;
}

.business-card-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.business-card-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.business-card-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.benefit-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--bg-light);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.business-card:hover .benefit-tag {
    background: var(--primary-blue-light);
    color: white;
    transform: translateY(-2px);
}

.business-testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2.5rem;
    padding-top: 3.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, rgba(20, 184, 166, 0.1) 50%);
    z-index: 1;
    border-top-left-radius: 100%;
}

.quote-icon {
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-blue);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.business-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--text-white);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.stat-number {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-weight: 500;
}

@media (max-width: 992px) {
    .business-testimonial-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .business-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .business-card-icon {
        margin-bottom: 1rem;
    }
    
    .business-stats {
        grid-template-columns: 1fr;
    }
}

/* Technical Section Cards */
.tech-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.tech-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.tech-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

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

.tech-card-header h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.tech-card-body {
    padding: 1.5rem;
    flex: 1;
}

.tech-card-body p {
    margin-bottom: 1.5rem;
}

.tech-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary-blue-light);
    color: white;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.tech-card:hover .tech-tag {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.tech-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-light);
    background-color: rgba(249, 250, 251, 0.5);
}

.tech-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.tech-link i {
    transition: transform var(--transition-fast);
}

.tech-link:hover {
    color: var(--accent-teal);
}

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

@media (max-width: 992px) {
    .tech-cards {
        grid-template-columns: 1fr;
    }
}

/* How it Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.step-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.step-icon {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-teal) 100%);
    opacity: 0.9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step-content p {
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.step-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-detail i {
    color: var(--success);
}

.step-progress {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.progress-line {
    height: 4px;
    flex: 1;
    background-color: var(--border-light);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.progress-line.active {
    background-color: var(--accent-teal);
}

.progress-line.complete {
    background-color: var(--accent-gold);
}

.step-card:hover .progress-line.active {
    background-color: var(--primary-blue);
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-teal);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-teal);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.starter-badge {
    background: var(--primary-blue-light);
}

.enterprise-badge {
    background: var(--accent-gold);
}

.pricing-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--text-dark);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.pricing-body {
    padding: 2rem 1.5rem;
    flex: 1;
}

.pricing-tagline {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature-item i {
    color: var(--accent-teal);
    font-size: 1.1rem;
}

.feature-item.highlight {
    background: rgba(20, 184, 166, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin: 0.25rem 0;
}

.feature-item.highlight i {
    color: var(--accent-gold);
}

.pricing-footer {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-teal);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--accent-teal) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-content p {
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--bg-light);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-tag {
    background: var(--primary-blue-light);
    color: white;
    transform: translateY(-2px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}