/* Reset and Variables */
:root {
    --bg-dark: #07070a;
    --bg-panel: rgba(20, 20, 25, 0.7);
    --text-primary: #f2f2f7;
    --text-secondary: #a1a1aa;
    --accent-primary: #f59e0b; /* Solar orange */
    --accent-secondary: #ef4444; /* Alert red */
    --gradient-brand: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-glow: linear-gradient(135deg, rgba(245, 158, 11, 0.4) 0%, rgba(239, 68, 68, 0.4) 100%);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 700;
}

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

.highlight {
    color: var(--accent-primary);
}

.highlight-text {
    color: var(--accent-primary);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 15px 45px rgba(245, 158, 11, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 40px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Icons Glow */
.icon-glow {
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-links li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Background Gradients & Glows */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(120px);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glow-1 {
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: -100px;
    left: -200px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(245, 158, 11, 0.1) 100%);
    animation: float 25s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulsing 2s infinite;
}

@keyframes pulsing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-description strong {
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stat i {
    color: #10b981;
}

/* Hero Visualizations (Stacy chat simulation) */
.visual-card {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-brand);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

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

.user-card img {
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
}

.user-card h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.status {
    font-size: 0.85rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.status i {
    font-size: 0.5rem;
}

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

.msg {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    max-width: 85%;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.msg.ai {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    animation-delay: 0.5s;
}

.msg.user {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    animation-delay: 1.5s;
}

.msg.ai:nth-child(3) {
    animation-delay: 2.5s;
}

.booking-alert {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #10b981;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 3.5s;
    margin-top: 0.5rem;
}

/* Sections Global */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    letter-spacing: -1px;
}

.section-subtitle {
    margin: 0 auto;
    font-size: 1.2rem;
}

.section-subtitle.left-align {
    margin: 0 0 2rem 0;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    text-align: center;
    padding: 3rem 2rem;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.success { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.problem-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

/* Features Section */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-list i {
    font-size: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 16px;
    color: var(--accent-primary);
}

.feature-list h4 {
    font-size: 1.25rem;
    color: white;
}

/* Dashboard Mockup in Features */
.big-glass {
    min-height: 400px;
    padding: 1rem;
}

.dashboard-mockup {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    height: 100%;
}

.mockup-header {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.mockup-header span {
    width: 12px; height: 12px; border-radius: 50%; background: #ef4444;
}
.mockup-header span:nth-child(2) { background: #f59e0b; }
.mockup-header span:nth-child(3) { background: #10b981; }

.mockup-body {
    padding: 1.5rem;
}

.mockup-body h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.call-log {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.log-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(16, 185, 129, 0.1); color: #10b981;
    display: flex; align-items: center; justify-content: center;
}

.log-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.log-details strong { color: white; }
.log-details span { font-size: 0.85rem; color: var(--text-secondary); }

.tag {
    font-size: 0.8rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: 600;
}
.tag.success { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }

/* Pricing Section */
.pricing-container {
    max-width: 900px;
}

.pricing-card {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(20,20,25,0.8) 0%, rgba(10,10,15,0.9) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(245, 158, 11, 0.05);
    margin-bottom: 3rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.currency { font-size: 2rem; margin-bottom: 1rem; font-weight: 600; }
.period { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 1rem; font-weight: 500; }

.pricing-header p {
    margin: 0 auto 2rem auto;
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 3rem auto;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.pricing-features i { color: #10b981; }
.pricing-features li:last-child { border: none; }

.small-text { font-size: 0.85rem; margin-top: 1.5rem; }

/* ROI Comparison */
.roi-comparison {
    padding: 2.5rem;
}

.roi-comparison h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.compare-table {
    display: flex;
    flex-direction: column;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.compare-row:last-child { border: none; }

.header-row {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--glass-border);
}

.highlight-col {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Footer & Form */
.footer {
    padding: 6rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(245, 158, 11, 0.15);
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    margin-top: 3rem;
}

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

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.direct-contact {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.direct-contact a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.socials a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.socials a:hover {
    color: var(--accent-primary);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left { transform: translateX(30px); }
.fade-right { transform: translateX(-30px); }
.fade-left.active, .fade-right.active { transform: translateX(0); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 968px) {
    .hero-container, .features-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title { font-size: 3.5rem; }
    .hero-description { margin: 0 auto 2.5rem auto; }
    .hero-stats { justify-content: center; flex-direction: column; gap: 1rem; }
    
    .problem-grid { grid-template-columns: 1fr; }
    .features-visual { order: 2; margin-top: 3rem; }
    .features-content { order: 1; }
    .section-subtitle.left-align { margin: 0 auto 2rem auto; }
    .feature-list li { text-align: left; }
    
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .price { font-size: 3.5rem; }
    .compare-row { font-size: 0.9rem; padding: 1rem 0.5rem; }
    .contact-card { padding: 2rem 1.5rem; }
}
