/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #070913;
    --bg-card: rgba(17, 22, 40, 0.65);
    --bg-card-hover: rgba(25, 32, 58, 0.8);
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.4);
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.3);
    --success: #39ff14;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --dark-gradient: linear-gradient(180deg, #070913 0%, #0d1224 100%);
}

body {
    background-color: var(--bg-dark);
    background-image: var(--dark-gradient);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

section {
    padding: 8rem 0;
    position: relative;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(138, 43, 226, 0.15);
    transform: translateY(-5px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(7, 9, 19, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
    animation: pulse 2s infinite;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
}

.hero-text-below {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 800px;
}

.badge {
    align-self: center;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #d8b4fe;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow), 0 0 10px var(--secondary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Video Player Mockup for Hero Section */
.hero-visual-video {
    position: relative;
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(138, 43, 226, 0.15);
    border: 1px solid var(--border-color);
    background: #090c15;
}

.video-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensure cropped edges do not spill out */
}

/* Crop the top and bottom edge by 2% to hide any watermark or black line */
.video-element {
    width: 104%;
    height: 104%;
    object-fit: cover;
    display: block;
    transform: translate(-2%, -2%) scale(1.05);
}

.video-live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 9, 19, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 19, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 5;
}

.video-overlay.playing {
    background: rgba(7, 9, 19, 0);
}

.video-overlay.playing .play-btn-pulse,
.video-overlay.playing .video-duration {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.play-btn-pulse {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 0 25px var(--primary-glow);
    transition: all 0.3s ease;
    position: relative;
}

.play-btn-pulse::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.8;
    animation: playPulse 2s infinite ease-out;
}

@keyframes playPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

.video-overlay:hover .play-btn-pulse {
    transform: scale(1.08);
    box-shadow: 0 0 35px var(--primary-glow), 0 0 15px var(--secondary-glow);
}

.video-duration {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    color: var(--secondary);
    transition: all 0.3s ease;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: rgba(17, 22, 40, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Benefits Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-tag {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    border-color: transparent;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* AI Chat Simulator Section */
.chat-sim-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.chat-sim-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-pills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.pill-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pill-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--primary);
    padding-left: 1.8rem;
}

.pill-arrow {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.pill-btn:hover .pill-arrow {
    transform: translateX(5px);
}

/* Chat UI Mockup */
.phone-mockup {
    width: 100%;
    max-width: 420px;
    height: 580px;
    border-radius: 36px;
    background: #090c15;
    border: 6px solid #1f2937;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(138, 43, 226, 0.15);
    position: relative;
}

.phone-header {
    background: #111827;
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 0 10px var(--primary-glow);
}

.phone-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid #111827;
    box-shadow: 0 0 6px var(--success);
}

.phone-user-info {
    display: flex;
    flex-direction: column;
}

.phone-user-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.phone-user-status {
    font-size: 0.75rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    background-image: radial-gradient(rgba(138, 43, 226, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
}

.message {
    max-width: 80%;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: msgFadeIn 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes msgFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-incoming {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    align-self: flex-start;
    border-top-left-radius: 4px;
    color: var(--text-main);
}

.msg-outgoing {
    background: var(--primary);
    background: var(--accent-gradient);
    align-self: flex-end;
    border-top-right-radius: 4px;
    color: #fff;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.typing-indicator {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    border-top-left-radius: 4px;
    align-self: flex-start;
    display: none;
    gap: 4px;
    align-items: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.phone-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background: #0b0f19;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.phone-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    color: var(--text-main);
    font-size: 0.85rem;
    outline: none;
}

.phone-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Calculator Section */
.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-label {
    font-size: 1rem;
    font-weight: 600;
}

.calc-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Range input styling */
.slider-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s ease;
}

.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--secondary);
    border: 2px solid #fff;
    transition: transform 0.1s ease;
}

.slider-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: radial-gradient(circle at 100% 0%, rgba(138, 43, 226, 0.15) 0%, transparent 40%), var(--bg-card);
    border: 1px solid rgba(138, 43, 226, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.results-header {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.result-row.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
}

.result-label {
    color: var(--text-muted);
}

.result-val {
    font-size: 1.25rem;
    font-weight: 700;
}

.result-val.highlight {
    font-size: 2rem;
    background: linear-gradient(135deg, #39ff14 0%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.calc-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2rem;
    text-align: center;
}

/* Integrations Section (Flowchart) */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    padding: 2rem 0;
}

.flow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color) 10%, var(--border-color) 90%, transparent);
    z-index: 1;
}

.flow-node {
    position: relative;
    z-index: 2;
    background: #0d1224;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.flow-node:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.node-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.flow-node h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.flow-node p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.flow-node.active-node {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    animation: floatNode 3s infinite ease-in-out;
}

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

.flow-arrow-animated {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    top: calc(50% - 4px);
    z-index: 3;
    box-shadow: 0 0 8px var(--secondary);
    animation: flowMovement 8s infinite linear;
}

@keyframes flowMovement {
    0% { left: 10%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 90%; opacity: 0; }
}

/* Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-calendar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.calendar-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
}

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

.calendar-day-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    padding-bottom: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-day.today {
    border-color: var(--secondary);
    color: var(--secondary);
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--accent-gradient) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.time-slots-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.time-slots-title {
    font-size: 1rem;
    font-weight: 600;
}

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

.time-slot {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.6rem 0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.time-slot:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
}

.time-slot.selected {
    background: var(--secondary);
    color: #070913;
    border-color: var(--secondary);
    font-weight: 700;
    box-shadow: 0 0 10px var(--secondary-glow);
}

.time-slot.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Booking Form */
.booking-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input, .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-select option {
    background: #0f1426;
    color: var(--text-main);
}

.btn-form-submit {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--primary-glow);
    margin-top: 1rem;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Modal Popup Success */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--success);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    color: var(--success);
    font-size: 2.5rem;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    animation: scalePulse 2s infinite ease-in-out;
}

@keyframes scalePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Extra business features (Fishechki) */
.extra-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.feature-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--border-color);
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider-toggle {
    background-image: var(--accent-gradient);
}

input:checked + .slider-toggle:before {
    transform: translateX(24px);
}

.feature-description-small {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Live Activity Stream widget */
.activity-stream {
    max-height: 180px;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.activity-stream::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent, #0b0f19);
    pointer-events: none;
}

.activity-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInDown 0.5s ease forwards;
}

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

.activity-status {
    color: var(--success);
    font-weight: 700;
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    display: none;
    line-height: 1.6;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    background: #04060b;
}

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

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--secondary); }
    50% { transform: scale(1.2); box-shadow: 0 0 20px var(--secondary); }
    100% { transform: scale(1); box-shadow: 0 0 10px var(--secondary); }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .chat-sim-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .flow-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .flow-container::before, .flow-arrow-animated {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none; /* Add responsive burger if needed, but for local simple page, hiding or resizing */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
