/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --accent-dark: #059669;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-muted: #cbd5e1;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-tertiary) 100%);
    --gradient-text: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Professional Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
    line-height: 1;
}

.logo-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-feature-settings: 'kern' 1;
}

/* Footer logo styles */
.footer .logo-name {
    font-size: 1.65rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

/* Hide mobile CTA on desktop */
.nav-menu-cta {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    z-index: 1002;
}

.nav-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    margin: 2px 0;
    transform-origin: center;
}

/* Animated hamburger to X */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-lg);
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    font-size: 1.2em;
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.section-badge.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.section-badge.danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger-color);
    color: var(--danger-color);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background:
        radial-gradient(ellipse 150% 100% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 150% 100% at 50% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #f1f5f9 50%, #f8fafc 75%, #ffffff 100%),
        url('data:image/svg+xml,<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hero-dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%2337a2f0" opacity="0.1"/><circle cx="0" cy="0" r="0.8" fill="%2310b981" opacity="0.08"/><circle cx="40" cy="40" r="0.8" fill="%2310b981" opacity="0.08"/></pattern></defs><rect width="200" height="200" fill="url(%23hero-dots)"/></svg>');
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 45deg at 20% 30%, rgba(37, 99, 235, 0.02) 0deg, transparent 90deg),
        conic-gradient(from 225deg at 80% 70%, rgba(16, 185, 129, 0.02) 0deg, transparent 90deg);
    opacity: 0.8;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background:
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(37, 99, 235, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 75% 85%, rgba(16, 185, 129, 0.3) 0.5px, transparent 0.5px);
    background-size: 80px 80px, 120px 120px, 60px 60px, 100px 100px;
    animation: float 25s ease-in-out infinite;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 1.2em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    text-align: left;
}

.hero-trust p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Performance Dashboard */
.performance-dashboard {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dashboard-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="0.5" fill="%2337a2f0" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23dashboard-pattern)"/></svg>');
    backdrop-filter: blur(25px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 30px rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.performance-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.dashboard-header h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.metric-trend {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success-color);
}

/* About Section */
.about {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
        radial-gradient(ellipse 120% 80% at 20% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 120% 80% at 80% 100%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(37, 99, 235, 0.01) 100px,
            rgba(37, 99, 235, 0.01) 200px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 150px,
            rgba(16, 185, 129, 0.01) 150px,
            rgba(16, 185, 129, 0.01) 300px
        );
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -20%;
    width: 40%;
    height: 60%;
    background:
        conic-gradient(from 0deg at 50% 50%,
            rgba(37, 99, 235, 0.02) 0deg,
            transparent 90deg,
            rgba(16, 185, 129, 0.02) 180deg,
            transparent 270deg
        );
    border-radius: 50%;
    filter: blur(40px);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.exp-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(239, 68, 68, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, #fefefe 0%, #fef7f7 25%, #fef2f2 50%, #fef7f7 75%, #fefefe 100%),
        url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="warning-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 35,30 5,30" fill="none" stroke="%23fca5a5" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="120" height="120" fill="url(%23warning-pattern)"/></svg>');
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(239, 68, 68, 0.015) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(239, 68, 68, 0.015) 0%, transparent 40%),
        linear-gradient(45deg, transparent 48%, rgba(239, 68, 68, 0.005) 50%, transparent 52%);
    z-index: 0;
}

.problem .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--danger-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.problem-text {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #f1f5f9 50%, #f8fafc 75%, #ffffff 100%),
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 80% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,2 45,14.5 45,37.5 25,50 5,37.5 5,14.5" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="200" height="200" fill="url(%23hexagon)"/></svg>'),
        conic-gradient(from 45deg at 30% 30%, rgba(37, 99, 235, 0.02) 0deg, transparent 120deg),
        conic-gradient(from 225deg at 70% 70%, rgba(16, 185, 129, 0.02) 0deg, transparent 120deg);
    animation: serviceBgFloat 40s ease-in-out infinite;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 8s ease-in-out infinite;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

@keyframes serviceBgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(1deg); }
    50% { transform: translate(-5px, 10px) rotate(-1deg); }
    75% { transform: translate(-10px, -5px) rotate(0.5deg); }
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.85) 100%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="service-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M0,15 Q7.5,7.5 15,15 T30,15" fill="none" stroke="%2337a2f0" stroke-width="0.3" opacity="0.08"/></pattern></defs><rect width="60" height="60" fill="url(%23service-pattern)"/></svg>');
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: var(--transition);
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(31, 38, 135, 0.2),
        0 0 40px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
}

.service-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
    border-bottom: none;
}


/* Results Section */
.results {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 25%, #f8fafc 50%, #e2e8f0 75%, #f1f5f9 100%),
        radial-gradient(ellipse 120% 100% at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
        url('data:image/svg+xml,<svg width="150" height="150" viewBox="0 0 150 150" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="success-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M5,15 L12,22 L25,8" fill="none" stroke="%2322c55e" stroke-width="0.8" opacity="0.15"/></pattern></defs><rect width="150" height="150" fill="url(%23success-pattern)"/></svg>');
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
        repeating-conic-gradient(
            from 0deg at 25% 25%,
            transparent 0deg 45deg,
            rgba(16, 185, 129, 0.005) 45deg 90deg
        );
    z-index: 0;
}

.results::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 200px;
    height: 400px;
    background: linear-gradient(45deg,
        rgba(16, 185, 129, 0.03) 0%,
        transparent 50%,
        rgba(37, 99, 235, 0.03) 100%
    );
    border-radius: 50%;
    transform: rotate(25deg);
    filter: blur(30px);
    animation: resultGlow 15s ease-in-out infinite;
    z-index: 0;
}

.results .container {
    position: relative;
    z-index: 1;
}

@keyframes resultGlow {
    0%, 100% { opacity: 0.6; transform: rotate(25deg) translateY(0); }
    50% { opacity: 0.3; transform: rotate(30deg) translateY(-20px); }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-info h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.result-category {
    background: var(--bg-secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.metric-comparison {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.before {
    color: var(--danger-color);
    font-weight: 600;
}

.after {
    color: var(--success-color);
    font-weight: 600;
}

.arrow {
    color: var(--text-light);
}

.improvement {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-impact {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-color);
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fafc 20%, #f1f5f9 40%, #f8fafc 60%, #f1f5f9 80%, #ffffff 100%),
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="flow-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50" fill="none" stroke="%23e2e8f0" stroke-width="1" opacity="0.2"/><path d="M50,0 Q75,25 50,50 T50,100" fill="none" stroke="%23e2e8f0" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="400" height="400" fill="url(%23flow-pattern)"/></svg>'),
        linear-gradient(45deg,
            transparent 48%,
            rgba(37, 99, 235, 0.008) 49%,
            rgba(37, 99, 235, 0.008) 51%,
            transparent 52%
        ),
        linear-gradient(-45deg,
            transparent 48%,
            rgba(16, 185, 129, 0.008) 49%,
            rgba(16, 185, 129, 0.008) 51%,
            transparent 52%
        );
    animation: processFlow 25s linear infinite;
    z-index: 0;
}

.process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37, 99, 235, 0.1) 10%,
        rgba(37, 99, 235, 0.3) 25%,
        rgba(16, 185, 129, 0.3) 50%,
        rgba(16, 185, 129, 0.3) 75%,
        rgba(37, 99, 235, 0.1) 90%,
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

@keyframes processFlow {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(0) translateY(-20px); }
    75% { transform: translateX(20px) translateY(-10px); }
    100% { transform: translateX(0) translateY(0); }
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: calc(100% + 2rem);
    background: var(--border-color);
}

.timeline-marker {
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    background: var(--bg-secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.timeline-duration {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}


/* FAQ Section */
.faq {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fafc 33%, #f1f5f9 66%, #ffffff 100%),
        radial-gradient(ellipse 150% 100% at 50% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
        url('data:image/svg+xml,<svg width="180" height="180" viewBox="0 0 180 180" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="faq-pattern" width="45" height="45" patternUnits="userSpaceOnUse"><text x="22" y="28" font-size="16" fill="%23e2e8f0" opacity="0.3" text-anchor="middle">?</text></pattern></defs><rect width="180" height="180" fill="url(%23faq-pattern)"/></svg>');
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 80px,
            rgba(37, 99, 235, 0.008) 80px,
            rgba(37, 99, 235, 0.008) 160px
        ),
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 120px,
            rgba(16, 185, 129, 0.008) 120px,
            rgba(16, 185, 129, 0.008) 240px
        ),
        radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
    animation: faqPattern 35s ease-in-out infinite;
    z-index: 0;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg,
        rgba(37, 99, 235, 0.02) 0%,
        transparent 50%,
        rgba(16, 185, 129, 0.02) 100%
    );
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

@keyframes faqPattern {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-10px) translateY(-20px); }
    75% { transform: translateX(-20px) translateY(10px); }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background:
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%),
        radial-gradient(ellipse 100% 80% at 0% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 100% 80% at 100% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="contact-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/><circle cx="30" cy="30" r="10" fill="none" stroke="%2364748b" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="300" height="300" fill="url(%23contact-pattern)"/></svg>'),
        conic-gradient(from 0deg at 20% 80%, rgba(37, 99, 235, 0.02) 0deg, transparent 180deg),
        conic-gradient(from 180deg at 80% 20%, rgba(16, 185, 129, 0.02) 0deg, transparent 180deg);
    animation: contactBgRotate 30s linear infinite;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 400px;
    height: 200px;
    background:
        radial-gradient(ellipse 100% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(40px);
    animation: contactGlow 12s ease-in-out infinite;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

@keyframes contactBgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes contactGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1.2) rotate(120deg);
    }
    66% {
        opacity: 0.6;
        transform: translateX(-50%) scale(0.8) rotate(240deg);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.method-icon {
    font-size: 1.5rem;
}

.method-info h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-primary);
    margin: 5% auto;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-2xl);
    animation: modalSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modal-large {
    max-width: 800px;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.modal-body {
    padding: 2rem;
}

.modal-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 500;
}

.demo-content {
    text-align: center;
}

.demo-placeholder {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    border: 2px dashed var(--border-color);
}

.demo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.demo-placeholder h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.demo-placeholder p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        gap: 3rem;
    }

    .about-content {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }

    .footer-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    /* Mobile Logo Adjustments */
    .logo-icon {
        font-size: 2rem;
    }

    .logo-name {
        font-size: 1.65rem;
    }

    /* Improved Mobile Container */
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -70%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        border-left: 1px solid var(--border-color);
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Enhanced mobile menu items */
    .nav-menu a {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem 0;
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid var(--border-light);
        transition: var(--transition);
        position: relative;
    }

    .nav-menu a:hover {
        color: var(--primary-color);
        padding-left: 1rem;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 4px;
        height: 0;
        background: var(--primary-color);
        transform: translateY(-50%);
        transition: height 0.3s ease;
        border-radius: 2px;
    }

    .nav-menu a:hover::before {
        height: 30px;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Mobile menu CTA - Show only on mobile */
    .nav-menu-cta {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu-cta a {
        border-bottom: none !important;
        padding: 1rem 1.5rem !important;
        border-radius: var(--border-radius) !important;
        text-align: center;
        justify-content: center;
        color: white !important;
    }

    .nav-menu-cta a:hover {
        padding-left: 1.5rem !important;
    }

    .nav-menu-cta a::before {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Enhanced Hero Mobile Layout */
    .hero {
        padding: 8rem 0 6rem;
        min-height: 90vh;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

    .stat {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-trust {
        text-align: center;
    }

    .hero-trust p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .trust-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }

    /* Enhanced About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-features {
        gap: 1rem;
    }

    .feature {
        gap: 0.75rem;
        text-align: left;
    }

    .feature-icon {
        font-size: 1.25rem;
        margin-top: 0.125rem;
    }

    .experience-card {
        padding: 1.5rem 1rem;
    }

    .exp-number {
        font-size: 2rem;
    }

    .exp-label {
        font-size: 0.8rem;
    }

    /* Enhanced Problem Section Mobile */
    .problem-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-stat {
        padding: 2rem 1.5rem;
    }

    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .problem-number {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }

    .problem-text {
        font-size: 0.9rem;
    }

    /* Enhanced Results Section Mobile */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-card {
        padding: 1.5rem;
    }

    .client-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .client-info h5 {
        font-size: 0.9rem;
    }

    .client-info p {
        font-size: 0.8rem;
    }

    .result-category {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    .before, .after {
        font-size: 0.9rem;
    }

    .improvement {
        font-size: 0.7rem;
        padding: 0.125rem 0.375rem;
    }

    /* Enhanced Process Section Mobile */
    .process-timeline {
        padding: 0 1rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-content h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .timeline-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .detail-item {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }

    /* Enhanced FAQ Section Mobile */
    .faq-question {
        padding: 1.25rem 0;
    }

    .faq-question h5 {
        font-size: 1rem;
        line-height: 1.3;
        padding-right: 2rem;
    }

    .faq-toggle {
        font-size: 1.25rem;
    }

    .faq-answer {
        padding-right: 2rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Enhanced Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .contact-info p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 0.75rem;
    }

    .method-icon {
        font-size: 1.25rem;
    }

    .method-info h5 {
        font-size: 0.9rem;
    }

    .method-info p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .checkbox-group {
        margin-bottom: 1.5rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }

    .form-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    /* Enhanced Performance Dashboard Mobile */
    .performance-dashboard {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .dashboard-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .dashboard-header h4 {
        font-size: 1rem;
    }

    .status-indicator {
        font-size: 0.75rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .metric-card {
        padding: 1rem 0.75rem;
    }

    .metric-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .metric-value {
        font-size: 1.5rem;
        margin-bottom: 0.125rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .metric-trend {
        font-size: 0.7rem;
    }

    .problem-stats {
        grid-template-columns: 1fr;
    }

    .modal-benefits {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Enhanced Mobile Touch Targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        touch-action: manipulation;
    }

    .btn-small {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .btn-large {
        min-height: 52px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Enhanced Hero Mobile */
    .hero {
        padding: 5rem 0 3rem;
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: space-between;
    }

    .stat {
        min-width: 70px;
        flex: 1;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Section Headers Mobile */
    .section-header h3 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.875rem;
    }

    /* Performance Dashboard Ultra Mobile */
    .performance-dashboard {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .dashboard-header h4 {
        font-size: 0.9rem;
    }

    .metric-card {
        padding: 0.75rem 0.5rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    /* Touch-friendly Interactive Elements */
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .faq-question {
        min-height: 48px;
        padding: 1rem 0;
    }

    .contact-method {
        min-height: 60px;
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 48px;
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .checkbox-label {
        min-height: 44px;
        padding: 0.5rem 0;
    }

    .checkmark {
        width: 24px;
        height: 24px;
    }

    /* Optimized Section Padding for Small Screens */
    .services,
    .results,
    .process,
    .contact,
    .faq,
    .about,
    .problem {
        padding: 3rem 0;
    }

    /* Additional Mobile Optimizations */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body {
        padding: 1.25rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column h5 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-certifications {
        gap: 0.5rem;
    }

    .cert-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }

    /* WhatsApp Widget Mobile Adjustments */
    .chat-bubble {
        width: 90vw;
        max-width: 300px;
        right: -5px;
    }

    .chat-messages {
        min-height: 80px;
        max-height: 140px;
    }

    .message-text {
        font-size: 0.8rem;
        padding: 6px 10px;
        line-height: 1.3;
    }

    .chat-whatsapp-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .whatsapp-icon {
        width: 14px;
        height: 14px;
    }
}

/* Additional Mobile-First Optimizations */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Animation improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-secondary: #000000;
        --bg-secondary: #ffffff;
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.03;
    animation: floatUp 15s linear infinite;
}

.floating-element:nth-child(1) {
    left: 10%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.floating-element:nth-child(2) {
    left: 20%;
    animation-delay: -4s;
    animation-duration: 22s;
}

.floating-element:nth-child(3) {
    left: 30%;
    animation-delay: -6s;
    animation-duration: 20s;
}

.floating-element:nth-child(4) {
    left: 40%;
    animation-delay: -8s;
    animation-duration: 16s;
}

.floating-element:nth-child(5) {
    left: 50%;
    animation-delay: -10s;
    animation-duration: 24s;
}

.floating-element:nth-child(6) {
    left: 60%;
    animation-delay: -12s;
    animation-duration: 19s;
}

.floating-element:nth-child(7) {
    left: 70%;
    animation-delay: -14s;
    animation-duration: 21s;
}

.floating-element:nth-child(8) {
    left: 80%;
    animation-delay: -16s;
    animation-duration: 17s;
}

.floating-element:nth-child(9) {
    left: 90%;
    animation-delay: -18s;
    animation-duration: 23s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.03;
    }
    90% {
        opacity: 0.03;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Premium Gloss Effects */
.premium-gloss {
    position: relative;
    overflow: hidden;
}

.premium-gloss::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: glossSweep 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glossSweep {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
}

/* Particle System */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chat-trigger {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.chat-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.chat-icon {
    width: 28px;
    height: 28px;
    fill: white;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff4444;
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.chat-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

/* WhatsApp-style header */
.chat-header {
    background: #075E54;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #128C7E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.chat-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.chat-info {
    color: white;
}

.chat-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.8;
    color: #dcf8c6;
}

.chat-close {
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.8;
}

.chat-close:hover {
    opacity: 1;
}

/* WhatsApp-style messages */
.chat-messages {
    background: #e5ddd5;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e5ddd5"/><circle cx="20" cy="20" r="1" fill="%23d1c7b3" opacity="0.3"/><circle cx="80" cy="20" r="1" fill="%23d1c7b3" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%23d1c7b3" opacity="0.3"/><circle cx="20" cy="80" r="1" fill="%23d1c7b3" opacity="0.3"/><circle cx="80" cy="80" r="1" fill="%23d1c7b3" opacity="0.3"/></svg>');
    padding: 16px;
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
}

.message-bubble {
    max-width: 85%;
    margin-bottom: 8px;
    position: relative;
}

.message-bubble.received {
    align-self: flex-start;
}

.message-text {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 7.5px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #303030;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
    position: relative;
}

.message-bubble.received .message-text::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 0;
    height: 0;
    border-right: 7px solid #ffffff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 2px;
    text-align: right;
    padding: 0 4px;
}

/* WhatsApp-style footer */
.chat-footer {
    background: #f0f0f0;
    padding: 12px 16px;
    border-top: 1px solid #e0e0e0;
}

.chat-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    width: 100%;
}

.chat-whatsapp-btn:hover {
    background: #20b55a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Mobile responsiveness for chat widget */
@media (max-width: 480px) {
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }

    .chat-bubble {
        width: 300px;
        right: -15px;
    }

    .chat-messages {
        min-height: 100px;
        max-height: 150px;
    }

    .message-text {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .chat-trigger {
        width: 55px;
        height: 55px;
    }

    .chat-icon {
        width: 24px;
        height: 24px;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .modal,
    .hero-particles,
    .floating-elements,
    .particle-system,
    .whatsapp-chat {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
}