/* Root Variables */
:root {
    --primary: #DC2626;
    --primary-dark: #B91C1C;
    --secondary: #1F2937;
    --light: #F9FAFB;
    --border: #E5E7EB;
    --text: #1F2937;
    --text-light: #6B7280;
    --spacing-unit: 1rem;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .btn-primary {
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: 0.375rem;
}

.nav-links .btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    padding: 6rem var(--spacing-unit);
    background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
}

.hero .container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-subtext {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Stats Section */
.stats {
    padding: 4rem var(--spacing-unit);
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 6rem var(--spacing-unit);
    background: #fff;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 6rem var(--spacing-unit);
    background: var(--light);
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* SEO Content Blocks */
.seo-blocks {
    padding: 6rem var(--spacing-unit);
    background: #fff;
}

.seo-blocks .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.seo-block {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    background: #fdfdfd;
}

.seo-block h2 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
}

.seo-block p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.seo-list {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.seo-list li {
    margin-bottom: 0.45rem;
}

.seo-list-columns {
    columns: 2;
    column-gap: 2rem;
}

.text-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* Demo Section */
.demo {
    padding: 6rem var(--spacing-unit);
    background: white;
}

.demo-content {
    max-width: 600px;
    margin: 0 auto;
}

.demo h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.demo > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.demo-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.demo-form button {
    width: 100%;
    margin-top: 1rem;
}

.form-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem var(--spacing-unit);
    background: var(--light);
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover:not(.featured) {
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-light);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.price-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text);
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why Us Section */
.why-us {
    padding: 6rem var(--spacing-unit);
    background: white;
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem var(--spacing-unit);
    background: var(--secondary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-phone {
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem var(--spacing-unit) 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-contact {
    font-size: 0.85rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .seo-list-columns {
        columns: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Loading & Success States */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-success {
    background: #dcfce7 !important;
    border-color: #86efac !important;
}

.form-success::after {
    content: "✓ Demo request sent!";
    display: block;
    color: #166534;
    font-weight: 600;
    margin-top: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    z-index: 1200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 0.85rem;
        bottom: 0.9rem;
    }

    .whatsapp-icon {
        width: 31px;
        height: 31px;
    }
}

/* ===================================
   LIVE DEMO SECTION
   =================================== */

.live-demo-section {
    padding: 6rem var(--spacing-unit);
    background: #0f1117;
    color: white;
}

.live-demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.live-demo-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.live-demo-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* Demo Stage Layout */
.demo-stage {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.phone-frame {
    width: 200px;
    background: #1c1c1e;
    border-radius: 36px;
    padding: 12px;
    border: 2px solid #3a3a3c;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 1px #2c2c2e;
    position: relative;
}

.phone-notch {
    width: 80px;
    height: 20px;
    background: #1c1c1e;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
    border: 2px solid #3a3a3c;
    border-top: none;
}

.phone-screen {
    background: #000;
    border-radius: 26px;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 6px 14px;
    font-size: 0.65rem;
    color: white;
    background: #000;
}

.phone-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

/* Call Screen */
.call-screen {
    flex: 1;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    gap: 0.75rem;
}

.call-avatar {
    font-size: 3rem;
    background: #374151;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.call-status {
    font-size: 0.75rem;
    color: #9ca3af;
}

.call-number {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.call-actions {
    display: flex;
    gap: 2rem;
}

.call-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.call-btn.decline { background: #DC2626; color: white; }
.call-btn.accept { background: #16a34a; color: white; }

/* AI Chat Screen */
.ai-screen {
    flex: 1;
    background: #111827;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.5rem;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #374151;
}

.ai-avatar {
    font-size: 1.25rem;
}

.ai-label {
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 500;
}

.ai-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.ai-bubble {
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.65rem;
    line-height: 1.4;
    max-width: 90%;
    animation: bubbleIn 0.3s ease-out;
}

.bubble-ai {
    background: #1f2937;
    color: #e5e7eb;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bubble-user {
    background: #DC2626;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Notification Screen */
.notification-screen {
    flex: 1;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #4b5563;
}

.placeholder-icon {
    font-size: 2rem;
    opacity: 0.3;
}

.notification-placeholder p {
    font-size: 0.65rem;
    text-align: center;
}

.notification-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.notif-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.notif-app {
    font-size: 0.6rem;
    color: #d1d5db;
    font-weight: 600;
}

.notif-time {
    font-size: 0.55rem;
    color: #6b7280;
}

.notif-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.notif-body {
    font-size: 0.6rem;
    color: #d1d5db;
    line-height: 1.4;
}

/* Job Card */
.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem;
    animation: slideUp 0.4s ease-out;
    color: #1f2937;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.job-card-header {
    font-size: 0.6rem;
    font-weight: 700;
    color: #DC2626;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e5e7eb;
}

.job-detail {
    font-size: 0.6rem;
    color: #374151;
    padding: 0.2rem 0;
    line-height: 1.3;
}

.job-value {
    color: #16a34a;
    font-weight: 700;
}

.job-actions {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.6rem;
}

.job-btn {
    flex: 1;
    background: #f3f4f6;
    border: none;
    border-radius: 6px;
    padding: 0.35rem 0.25rem;
    font-size: 0.55rem;
    cursor: pointer;
    font-weight: 600;
    color: #374151;
}

.job-btn-book {
    background: #DC2626;
    color: white;
}

/* Demo Middle */
.demo-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.demo-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s;
}

.flow-step.inactive {
    opacity: 0.3;
}

.flow-step.active {
    opacity: 1;
}

.flow-icon {
    font-size: 1.75rem;
    background: #1f2937;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.flow-step.active .flow-icon {
    background: #DC2626;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.flow-text {
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
}

.flow-step.active .flow-text {
    color: white;
}

.flow-arrow {
    color: #374151;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.btn-demo-play {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 160px;
}

.demo-timer {
    font-size: 0.8rem;
    color: #6b7280;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Scenario Buttons */
.demo-scenarios {
    text-align: center;
}

.demo-scenarios p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.scenario-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scenario-btn {
    background: #1f2937;
    border: 1px solid #374151;
    color: #9ca3af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.scenario-btn:hover,
.scenario-btn.active {
    background: #DC2626;
    border-color: #DC2626;
    color: white;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Responsive Demo */
@media (max-width: 900px) {
    .demo-stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .demo-middle {
        order: -1;
    }

    .demo-flow {
        gap: 0.25rem;
    }

    .phone-frame {
        width: 180px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta,
    .demo {
        display: none;
    }
}
