:root {
    --primary: #1a1a2e;
    --primary-dark: #16162a;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --text: #1a202c;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    font-weight: 400;
}

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

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
}

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

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-light);
}

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

.hero {
    background-image: url('milwaukee-skyline.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    color: white;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.4);
}

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

.hero h1 {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-cta {
    margin-bottom: 4rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.value-prop {
    padding: 6rem 0;
    text-align: center;
    background: var(--primary);
    color: white;
}

.value-prop h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.value-prop .lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: left;
}

.feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pricing {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.pricing h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-size: 1.125rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-for {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.price {
    margin: 1.25rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.price-period {
    color: var(--text-light);
    font-size: 1.125rem;
}

.setup-fee {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
    color: var(--text-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.industries {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.industries h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.industry {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.industry:hover {
    background: rgba(255, 255, 255, 0.1);
}

.live-demo {
    padding: 6rem 0;
    background: var(--bg);
}

.live-demo h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.live-demo .lead {
    color: var(--text-light);
    text-align: center;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.demo-tab {
    padding: 0.875rem 1.75rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--text-light);
}

.demo-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.demo-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
}

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

.demo-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.demo-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.demo-features {
    list-style: none;
}

.demo-features li {
    padding: 0.625rem 0;
    color: var(--text);
    font-size: 0.9375rem;
}

.demo-features li::before {
    content: "—";
    margin-right: 0.75rem;
    color: var(--accent);
}

.chat-widget {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-info h4 {
    font-size: 0.9375rem;
    margin: 0;
    font-weight: 500;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.8;
    color: #10b981;
}

.chat-status::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.35rem;
}

.chat-messages {
    height: 280px;
    overflow-y: auto;
    padding: 1.25rem;
    background: #f8fafc;
}

.message {
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.message-content {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    max-width: 90%;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.message.bot .message-content {
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
}

.message.user {
    text-align: right;
}

.message.user .message-content {
    background: var(--accent);
    color: white;
    display: inline-block;
    text-align: left;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: block;
}

.chat-quick-replies {
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.quick-reply {
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--text);
}

.quick-reply:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.chat-input {
    display: flex;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-light);
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px 0 0 6px;
    border-right: none;
    outline: none;
    font-size: 0.9375rem;
}

.chat-input input:focus {
    border-color: var(--accent);
}

.chat-input button {
    padding: 0.625rem 1.25rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
}

.phone-widget {
    max-width: 340px;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    min-height: 480px;
}

.phone-header {
    background: var(--primary);
    color: white;
    padding: 0.875rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.phone-call {
    padding: 3rem 2rem;
    text-align: center;
}

.caller-avatar {
    width: 90px;
    height: 90px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--text-light);
}

.call-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 3rem;
}

.call-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.call-btn:hover {
    transform: scale(1.05);
}

.call-btn.decline {
    background: #dc2626;
    color: white;
}

.call-btn.answer {
    background: #16a34a;
    color: white;
}

.phone-conversation {
    padding: 1.5rem;
}

.call-timer {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.conversation-log {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1rem;
    height: 240px;
    overflow-y: auto;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.log-entry {
    padding: 0.5rem 0;
    line-height: 1.5;
}

.log-entry.ai {
    color: var(--accent);
}

.call-controls {
    text-align: center;
}

.control-btn {
    padding: 0.75rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
}

.phone-result {
    padding: 1.5rem;
    text-align: center;
}

.result-icon {
    width: 64px;
    height: 64px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.transcript {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: left;
    margin: 1.25rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.transcript h5 {
    margin-bottom: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.transcript p {
    margin-bottom: 0.625rem;
    color: var(--text-light);
}

.result-actions {
    text-align: left;
    font-size: 0.875rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.result-actions p {
    margin-bottom: 0.375rem;
    color: var(--text-light);
}

.sms-widget {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.sms-header {
    background: var(--accent);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.9375rem;
}

.sms-conversation {
    padding: 1.25rem;
    height: 420px;
    overflow-y: auto;
    background: #f8fafc;
}

.sms-date {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1.5rem 0 1rem;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sms-date::before,
.sms-date::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: var(--border);
}

.sms-date::before { left: 0; }
.sms-date::after { right: 0; }

.sms-message {
    margin-bottom: 1rem;
    max-width: 85%;
}

.sms-message.customer {
    margin-left: auto;
}

.sms-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.sms-message.customer .sms-bubble {
    background: var(--accent);
    color: white;
    border-radius: 12px 12px 4px 12px;
}

.sms-message.auto .sms-bubble {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px 12px 12px 4px;
}

.sms-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    display: block;
}

.sms-message.customer .sms-time {
    text-align: right;
}

.sms-label {
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 0.35rem;
    display: block;
    font-weight: 500;
}

.demo-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.demo-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.about {
    padding: 6rem 0;
    background: var(--bg);
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.about h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.about p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.promise {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2.5rem;
    border: 1px solid var(--border-light);
}

.promise h4 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.promise ul {
    list-style: none;
}

.promise li {
    padding: 0.625rem 0;
    color: var(--text);
    font-size: 0.9375rem;
}

.promise li strong {
    color: var(--primary);
}

.schedule-section {
    padding: 6rem 0;
    background: var(--bg-alt);
    text-align: center;
}

.schedule-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-container {
    max-width: 550px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.calendar-header h3 {
    font-size: 1.125rem;
    margin: 0;
    font-weight: 600;
}

.calendar-nav {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.calendar-nav:hover {
    background: var(--border);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-day-header {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 0.5rem;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--text);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--accent);
    color: white;
}

.calendar-day.selected {
    background: var(--accent);
    color: white;
}

.calendar-day.disabled {
    color: var(--border);
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.time-slots-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.time-slots-wrapper h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.selected-date {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--text);
}

.time-slot:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.time-slot.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.booking-form-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: left;
}

.booking-form-wrapper h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.booking-summary {
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.booking-success {
    padding: 2.5rem;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.booking-success h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-success p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--primary);
    color: white;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.75);
}

.cta-section p {
    margin-bottom: 2rem;
}

.cta-section .cta-note {
    color: rgba(255, 255, 255, 0.6);
}

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-size: 0.9375rem;}

.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .demo-info {
        order: 2;
    }
    
    .demo-widget {
        order: 1;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .booking-container {
        padding: 1.5rem;
        margin: 2rem 1rem 0;
    }
}
