/* ============================================
   MEDOPLY — Marketing Website Styles
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #eebd2b;
    --primary-dark: #cfa325;
    --primary-hover: #d4a726;
    --bg-dark: #0A0A0A;
    --surface-dark: #0f0e0a;
    --surface-card: #1a1812;
    --glass-bg: linear-gradient(180deg, rgba(30, 27, 20, 0.7) 0%, rgba(15, 14, 10, 0.9) 100%);
    --glass-border: rgba(238, 189, 43, 0.1);
    --border-gold: rgba(238, 189, 43, 0.2);
    --gold-glow: 0 0 20px rgba(238, 189, 43, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --red-accent: #ef4444;
    --green-accent: #22c55e;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: #000;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === Utility Classes === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* Glass Panel */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(238, 189, 43, 0.5);
    box-shadow: var(--gold-glow);
}

/* Text Effects */
.text-glow {
    text-shadow: 0 0 20px rgba(238, 189, 43, 0.3);
}

.text-gradient-gold {
    background: linear-gradient(to right, #eebd2b, #fff8dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-white {
    background: linear-gradient(to bottom right, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    transition: top 0.3s ease;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 56rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    transition: color 0.2s;
}

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

.navbar-login {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.navbar-login:hover {
    border-color: rgba(238, 189, 43, 0.5);
    color: var(--primary);
}

.navbar-cta {
    background: var(--primary);
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0 15px rgba(238, 189, 43, 0.3);
}

.navbar-cta:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.navbar-logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(238, 189, 43, 0.4));
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 12, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    max-width: 20rem;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-menu-nav a .material-symbols-outlined {
    font-size: 1.375rem;
    color: var(--primary);
    opacity: 0.7;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
    color: white;
    background: rgba(238, 189, 43, 0.08);
}

.mobile-menu-nav a:hover .material-symbols-outlined {
    opacity: 1;
}

.mobile-menu-divider {
    width: 100%;
    max-width: 16rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(238, 189, 43, 0.2), transparent);
    margin: 2rem 0;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 20rem;
}

.mobile-menu-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-menu-login:hover {
    border-color: rgba(238, 189, 43, 0.5);
    background: rgba(238, 189, 43, 0.05);
    color: var(--primary);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(238, 189, 43, 0.3);
}

.mobile-menu-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(238, 189, 43, 0.4);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(238, 189, 43, 0.3);
}

/* === HERO === */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 12rem 0 8rem;
    }
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: rgba(238, 189, 43, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(238, 189, 43, 0.3);
    background: rgba(238, 189, 43, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.hero-badge .pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 2.75rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.25rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    font-weight: 300;
    max-width: 40rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        width: auto;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: #000;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 20px rgba(238, 189, 43, 0.25);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s;
}

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

.btn-secondary .material-symbols-outlined {
    transition: color 0.2s;
}

.btn-secondary:hover .material-symbols-outlined {
    color: var(--primary);
}

/* Trust Stats */
.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

@media (min-width: 1024px) {
    .trust-stats {
        justify-content: flex-start;
    }
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.trust-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.trust-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Dashboard */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 28rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.7s ease;
}

@media (max-width: 480px) {
    .dashboard-card {
        max-width: 100%;
        padding: 1rem;
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.dashboard-ciro {
    font-size: 1.875rem;
    font-weight: 700;
}

.dashboard-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Chart Bars */
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    height: 8rem;
    width: 100%;
    margin-bottom: 2rem;
}

.chart-bar {
    flex: 1;
    border-radius: 0.25rem 0.25rem 0 0;
    transition: height 0.6s ease;
}

/* Activity Item */
.activity-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.activity-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-text {
    font-size: 0.875rem;
    color: #d1d5db;
    font-style: italic;
}

/* Live Feed (Vertical Stacked) */
.live-feed {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 6.5rem;
    overflow: hidden;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    animation: feedSlideIn 0.5s ease forwards;
}

.feed-item .activity-icon {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-item-text {
    flex: 1;
    min-width: 0;
}

.feed-item-text p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-item-amount {
    font-weight: 700;
    color: #eebd2b;
    font-size: 0.8rem;
    white-space: nowrap;
}

@keyframes feedSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ciro-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(238, 189, 43, 0.08);
    border-radius: 0.5rem;
    border: 1px solid rgba(238, 189, 43, 0.15);
}

/* Chat Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem 1rem 1rem 0;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9ca3af;
    animation: typingBounce 1.4s infinite;
}

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

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

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* Chat bubble reveal animation */
.chat-bubble.chat-hidden {
    opacity: 0;
    transform: translateY(10px);
}

.chat-bubble.chat-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 1rem;
    border-radius: 0.75rem;
    z-index: 30;
}

.floating-badge-top {
    top: -2.5rem;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .floating-badge-top {
        right: -2.5rem;
    }
}

.floating-badge-bottom {
    bottom: 2.5rem;
    left: -1rem;
    z-index: 10;
}

@media (min-width: 1024px) {
    .floating-badge-bottom {
        left: -4rem;
    }
}

.floating-badge-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === BEFORE/AFTER SECTION === */
.comparison-section {
    padding: 6rem 0;
    background: var(--surface-dark);
    position: relative;
}

.comparison-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.comparison-card {
    border-radius: 0.75rem;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.comparison-card--positive {
    border-color: var(--border-gold);
    box-shadow: 0 0 50px -12px rgba(238, 189, 43, 0.15);
    outline: 1px solid var(--border-gold);
    outline-offset: -1px;
}

.comparison-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comparison-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.comparison-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === CALCULATOR === */
.calculator-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.calculator-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(238, 189, 43, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.calculator-box {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .calculator-box {
        padding: 3rem;
    }
}

/* Range Slider */
.slider-container {
    margin-bottom: 3rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-weight: 500;
}

.slider-value {
    color: white;
    font-weight: 700;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 1rem;
    background: #1f2937;
    border-radius: 9999px;
    outline: none;
    cursor: pointer;
    position: relative;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #4b5563;
    margin-top: 0.5rem;
}

/* Calculator Results */
.calc-results {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .calc-results {
        grid-template-columns: 1fr 1fr;
    }
}

.calc-result-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.calc-result-card--loss {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.calc-result-card--gain {
    background: rgba(238, 189, 43, 0.1);
    border: 1px solid rgba(238, 189, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.calc-result-card--gain::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(238, 189, 43, 0.05);
    filter: blur(20px);
}

.calc-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.calc-number {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.calc-note {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: black;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-white:hover {
    background: #e5e7eb;
}

/* === FEATURES GRID === */
.features-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .features-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--surface-card);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #000;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-stat {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(238, 189, 43, 0.1);
    border: 1px solid rgba(238, 189, 43, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.01em;
}

.beta-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: rgba(238, 189, 43, 0.2);
    border: 1px solid rgba(238, 189, 43, 0.2);
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary);
}

.features-link {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.features-link:hover {
    color: white;
}

.features-link .material-symbols-outlined {
    font-size: 0.875rem;
    transition: transform 0.2s;
}

.features-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* === AI SHOWCASE === */
.ai-section {
    padding: 6rem 0;
    background: var(--surface-card);
    position: relative;
    overflow: hidden;
}

.ai-section-glow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: rgba(238, 189, 43, 0.05);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.ai-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ai-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #000;
    border: 6px solid #333;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.phone-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2.5rem 1rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.phone-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.phone-status {
    font-size: 0.625rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-status .dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #4ade80;
}

.phone-chat {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    padding: 5rem 0.75rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

.chat-bubble--ai {
    align-self: flex-start;
    background: #262626;
    color: white;
    border-top-left-radius: 0;
}

.chat-bubble--user {
    align-self: flex-end;
    background: var(--primary);
    color: #000;
    font-weight: 500;
    border-top-right-radius: 0;
}

.phone-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5rem;
    background: var(--surface-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    gap: 0.5rem;
}

.phone-input-field {
    flex: 1;
    height: 2rem;
    background: #262626;
    border-radius: 9999px;
    padding: 0 0.75rem;
    color: #6b7280;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
}

.phone-send-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Phone decorative elements */
.phone-deco-1 {
    position: absolute;
    top: 2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(238, 189, 43, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s infinite;
}

.phone-deco-2 {
    position: absolute;
    bottom: -1.25rem;
    left: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    filter: blur(20px);
}

/* AI Content */
.ai-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.ai-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ai-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
}

/* === VOICE AI === */
.voice-ai-card {
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(238, 189, 43, 0.3);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .voice-ai-card {
        padding: 3rem;
    }
}

.voice-ai-card .top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.voice-ai-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .voice-ai-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.voice-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(238, 189, 43, 0.3);
    background: rgba(238, 189, 43, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Mic Animation */
.mic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 16rem;
    position: relative;
}

.mic-ring-1,
.mic-ring-2 {
    position: absolute;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.mic-ring-1 {
    width: 8rem;
    height: 8rem;
    background: rgba(238, 189, 43, 0.2);
    opacity: 0.75;
}

.mic-ring-2 {
    width: 12rem;
    height: 12rem;
    background: rgba(238, 189, 43, 0.1);
    opacity: 0.5;
    animation-delay: 0.5s;
}

.mic-button {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(to bottom right, var(--primary), #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(238, 189, 43, 0.4);
    z-index: 10;
    position: relative;
}

.sound-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 2rem;
    margin-top: 2rem;
}

.sound-wave-bar {
    width: 3px;
    border-radius: 9999px;
    animation: wave 1s ease-in-out infinite;
}

.sound-wave-bar:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.sound-wave-bar:nth-child(2) {
    height: 20px;
    animation-delay: 0.2s;
}

.sound-wave-bar:nth-child(3) {
    height: 32px;
    animation-delay: 0.1s;
}

.sound-wave-bar:nth-child(4) {
    height: 24px;
    animation-delay: 0.3s;
}

.sound-wave-bar:nth-child(5) {
    height: 16px;
    animation-delay: 0.15s;
}

.sound-wave-bar:nth-child(6) {
    height: 8px;
    animation-delay: 0.4s;
}

.mic-status {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-family: monospace;
    color: var(--primary);
    animation: pulse 2s infinite;
}

/* === TIMELINE === */
.timeline-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.timeline-container {
    max-width: 62.5rem;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(238, 189, 43, 0.5), transparent);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .timeline-step {
        flex-direction: row;
    }
}

.timeline-content {
    padding-left: 3rem;
}

@media (min-width: 768px) {
    .timeline-content {
        width: 45%;
        padding-left: 0;
    }

    .timeline-step:nth-child(odd) .timeline-content {
        text-align: right;
        padding-right: 3rem;
    }

    .timeline-step:nth-child(even) .timeline-content {
        padding-left: 3rem;
        order: 2;
    }
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.timeline-step:hover .timeline-content h3 {
    color: var(--primary);
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 1rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(238, 189, 43, 0.8);
    z-index: 10;
    transform: translateX(-7px);
    transition: background 0.3s;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.timeline-step:hover .timeline-dot {
    background: var(--primary);
}

.timeline-label {
    display: none;
}

@media (min-width: 768px) {
    .timeline-label {
        display: block;
        width: 45%;
        font-family: monospace;
        font-size: 0.75rem;
        color: #4b5563;
        opacity: 0.5;
    }

    .timeline-step:nth-child(odd) .timeline-label {
        padding-left: 3rem;
        text-align: left;
    }

    .timeline-step:nth-child(even) .timeline-label {
        text-align: right;
        padding-right: 3rem;
        order: 1;
    }
}

/* === SECURITY === */
.security-section {
    padding: 5rem 0;
    background: var(--surface-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.security-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .security-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.security-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

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

.security-status .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--green-accent);
    animation: pulse 2s infinite;
}

.security-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.security-card {
    background: var(--bg-dark);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-card h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.security-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0 2.5rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gold);
    position: relative;
}

.cta-card {
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .cta-card {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cta-content {
    max-width: 36rem;
}

.cta-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* CTA Form */
.cta-form-box {
    width: 100%;
    max-width: 28rem;
    background: var(--surface-card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(238, 189, 43, 0.3);
    box-shadow: 0 0 30px rgba(238, 189, 43, 0.05);
    position: relative;
}

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

.cta-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.cta-input:focus {
    border-color: var(--primary);
}

.cta-input::placeholder {
    color: #4b5563;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: background 0.2s;
}

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

/* === FOOTER === */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer-links {
        padding-top: 3rem;
    }
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: var(--surface-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: rgba(238, 189, 43, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}


/* === TESTIMONIALS === */
.testimonials-section {
    padding: 5rem 0;
    text-align: center;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-heading {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    text-align: left;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(238, 189, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.testimonial-author strong {
    font-size: 0.875rem;
    display: block;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #64748b;
}

.testimonial-badge {
    margin-left: auto;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.625rem;
    border-radius: 0.75rem;
    background: rgba(238, 189, 43, 0.1);
    color: var(--primary);
    border: 1px solid rgba(238, 189, 43, 0.15);
}

/* === FAQ === */
.faq-section {
    padding: 5rem 0;
    text-align: center;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s;
    text-align: left;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 12rem;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* === STICKY BOTTOM BAR === */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(238, 189, 43, 0.2);
}

.sticky-bar-btn {
    flex: 1;
    max-width: 32rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: #000;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    transition: transform 0.2s;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 480px) {
    .sticky-bar-btn {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
}

@media (max-width: 768px) {
    .sticky-bar-subtitle {
        display: none;
    }

    .navbar-login {
        display: none;
    }

    .navbar-cta {
        display: none;
    }
}

.sticky-bar-btn:hover {
    transform: scale(1.02);
}

.sticky-bar-phone {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.sticky-bar-phone:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* === CHATBOT WIDGET === */
.chatbot-widget {
    display: none;
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    width: 380px;
    max-width: calc(100vw - 2rem);
    height: 520px;
    border-radius: 0.75rem;
    overflow: hidden;
    z-index: 60;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    flex-direction: column;
}

.chatbot-widget.open {
    display: flex;
}

.chatbot-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.chatbot-close:hover {
    color: white;
}

.chatbot-messages {
    flex: 1;
    background: var(--bg-dark);
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-input-area {
    padding: 0.75rem;
    background: var(--surface-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.625rem 1rem;
    color: white;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
}

.chatbot-input:focus {
    border-color: var(--primary);
}

.chatbot-input::placeholder {
    color: #4b5563;
}

.chatbot-send {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chatbot-send:hover {
    background: var(--primary-hover);
}

/* === SCROLL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* === ANIMATIONS === */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

/* Extra bottom padding for sticky bar */
.cta-section {
    padding-bottom: 6rem;
}