/* ==========================================================================
   Zetabot AI Design System & Style Sheets
   ========================================================================== */

/* Global Variables & Tokens */
:root {
    --bg-dark: 224, 25%, 6%;        /* #0a0b0f */
    --bg-card: 224, 25%, 10%;       /* #11131a */
    --text-main: 224, 15%, 85%;     /* #d3d6e0 */
    --text-muted: 224, 12%, 60%;    /* #949aab */
    
    --primary: 236, 100%, 61%;      /* Indigo #3b42f3 */
    --primary-glow: 236, 100%, 61%, 0.15;
    --cyan: 184, 100%, 48%;         /* Cyan #00e5f5 */
    --cyan-glow: 184, 100%, 48%, 0.15;
    --white: 0, 0%, 100%;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-glass: rgba(255, 255, 255, 0.07);
    --bg-glass: rgba(18, 20, 29, 0.7);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: hsl(var(--white));
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: hsl(var(--text-muted));
    margin-bottom: 15px;
}

a {
    color: hsl(var(--cyan));
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: hsl(var(--white));
}

/* Layout Utilities */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.section-padding {
    padding: 80px 0;
}

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

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

.reverse {
    direction: ltr;
}

.w-100 {
    width: 100%;
}

.hidden {
    display: none !important;
}

.text-glow {
    text-shadow: 0 0 12px hsla(var(--cyan), 0.6);
    color: hsl(var(--cyan)) !important;
}

.text-cyan {
    color: hsl(var(--cyan)) !important;
}

/* Button System */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    color: hsl(var(--white));
    box-shadow: 0 4px 15px hsla(var(--primary), 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(var(--cyan), 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: hsl(var(--white));
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: hsl(var(--cyan));
    transform: translateY(-2px);
}

/* Navigation Header */
.site-header {
    position: sticky;
    top: 0;
    background-color: hsla(var(--bg-dark), 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: hsl(var(--white));
    letter-spacing: -0.01em;
}

.logo-accent {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-domain {
    color: hsl(var(--text-muted));
    font-size: 1.1rem;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: hsl(var(--text-muted));
    padding: 6px 12px;
    border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
    color: hsl(var(--cyan));
}

.btn-nav {
    background: rgba(0, 229, 245, 0.1);
    border: 1px solid hsla(var(--cyan), 0.3);
    color: hsl(var(--cyan));
    border-radius: 6px;
    padding: 6px 14px;
}

.btn-nav:hover {
    background: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: hsl(var(--white));
    margin: 5px auto;
    transition: var(--transition-smooth);
}

/* Active Section Controls */
.page-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-section.active-section {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    padding: 80px 0 60px;
    background: radial-gradient(circle at 80% 20%, hsla(var(--cyan), 0.05), transparent 45%),
                radial-gradient(circle at 10% 80%, hsla(var(--primary), 0.07), transparent 45%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    padding: 6px 14px;
    background: hsla(var(--primary), 0.15);
    border: 1px solid hsla(var(--primary), 0.3);
    color: hsl(var(--cyan));
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-lead-magnet {
    margin-bottom: 25px;
}

.lead-magnet-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 6px;
}

.lead-magnet-link:hover {
    border-color: hsl(var(--cyan));
}

.lead-magnet-link .icon {
    width: 18px;
    height: 18px;
    fill: hsl(var(--cyan));
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-social-proof .stars {
    color: #ffb800;
    letter-spacing: 2px;
}

.hero-social-proof p {
    font-size: 0.85rem;
}

/* Dashboard Mock Visual */
.dashboard-mock {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.mock-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.mock-dot.red { background-color: #ff5f56; }
.mock-dot.yellow { background-color: #ffbd2e; }
.mock-dot.green { background-color: #27c93f; }

.mock-title {
    margin-left: 10px;
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
    font-family: var(--font-heading);
}

.mock-body {
    padding: 20px;
}

.mock-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 12px;
    border-radius: 8px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mock-workflow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.68rem;
    color: hsl(var(--text-muted));
    gap: 4px;
}

.wf-step.active {
    color: hsl(var(--cyan));
}

.wf-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-step.active .wf-circle {
    background-color: hsla(var(--cyan), 0.1);
    border-color: hsl(var(--cyan));
}

.wf-circle .icon-sm {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.wf-arrow {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.15);
}

.mock-logs {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.72rem;
    max-height: 120px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.log-line {
    color: hsl(var(--text-muted));
    margin-bottom: 6px;
}

.log-line.success {
    color: #4ade80;
}

.log-time {
    color: rgba(255, 255, 255, 0.25);
}

/* Trust Bar / Niche Tags */
.trust-bar {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 25px 0;
}

.trust-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 15px;
    color: hsl(var(--text-muted));
}

.niche-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.niche-badge {
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    font-size: 0.82rem;
    color: hsl(var(--text-main));
}

/* ================= PROBLEM & REC STORY ================= */
.experience-card {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.exp-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: hsl(var(--white));
    line-height: 1;
}

.exp-text {
    font-size: 1rem;
    color: hsl(var(--white));
    opacity: 0.9;
}

.section-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* ================= ROI CALCULATOR ================= */
.calculator-box {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.calc-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.calc-body {
    margin-top: 30px;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.label-row label {
    font-size: 0.9rem;
    color: hsl(var(--white));
    font-weight: 500;
}

.value-display {
    color: hsl(var(--cyan));
    font-weight: 700;
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: hsl(var(--cyan));
    cursor: pointer;
    box-shadow: 0 0 10px hsla(var(--cyan), 0.5);
    transition: var(--transition-smooth);
}

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

.range-limits {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 0.72rem;
    color: hsl(var(--text-muted));
}

.calc-outputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.output-card {
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-glass);
}

.output-card.bg-indigo {
    background-color: hsla(var(--primary), 0.12);
    border-color: hsla(var(--primary), 0.3);
}

.output-card.bg-cyan {
    background-color: hsla(var(--cyan), 0.08);
    border-color: hsla(var(--cyan), 0.3);
}

.out-label {
    display: block;
    font-size: 0.85rem;
    color: hsl(var(--text-main));
    opacity: 0.9;
}

.out-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 4px 0;
}

.out-desc {
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
}

.calc-verdict p {
    font-size: 0.9rem;
}

/* ================= SERVICES TILES ================= */
.section-header {
    margin-bottom: 50px;
}

.section-desc-center {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.service-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--cyan), 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.srv-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(var(--primary), 0.1);
    border: 1px solid hsla(var(--primary), 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.srv-icon svg {
    width: 24px;
    height: 24px;
    fill: hsl(var(--cyan));
}

.niche-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: hsl(var(--cyan));
    background-color: hsla(var(--cyan), 0.08);
    padding: 3px 10px;
    border-radius: 4px;
}

/* Lead Magnet Bar */
.lead-magnet-bar {
    background: linear-gradient(135deg, hsla(var(--primary), 0.15), hsla(var(--cyan), 0.15));
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.magnet-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.magnet-actions {
    margin-top: 20px;
}

/* ================= SERVICES DETAILS ================= */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.tagline {
    font-size: 1.1rem;
    color: hsl(var(--cyan));
    font-weight: 500;
    margin-bottom: 15px;
}

.srv-benefits {
    list-style: none;
    margin: 20px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-benefits li {
    font-size: 0.95rem;
    color: hsl(var(--text-main));
}

.section-divider {
    border: none;
    height: 1px;
    background-color: var(--border-glass);
}

/* WhatsApp Mock Details */
.whatsapp-mock {
    background-color: #0b141a;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.wa-header {
    background-color: #128c7e;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #075e54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.wa-header-text {
    display: flex;
    flex-direction: column;
}

.wa-name {
    color: hsl(var(--white));
    font-size: 0.85rem;
    font-weight: 600;
}

.wa-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
}

.wa-body {
    padding: 16px;
    background-image: radial-gradient(#1c272c 15%, transparent 15%);
    background-size: 12px 12px;
    height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-msg {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.4;
}

.wa-msg.received {
    background-color: #202c33;
    color: hsl(var(--white));
    align-self: flex-start;
}

.wa-msg.sent {
    background-color: #005c4b;
    color: #e9edef;
    align-self: flex-end;
}

/* Chatbot Mock Details */
.chat-widget-mock {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.cwm-header {
    background-color: hsla(var(--cyan), 0.1);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cwm-header span {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.cwm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #27c93f;
    box-shadow: 0 0 8px #27c93f;
}

.cwm-body {
    padding: 15px;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.cwm-bubble {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    max-width: 80%;
}

.cwm-bubble.bot {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: hsl(var(--text-main));
    align-self: flex-start;
}

.cwm-bubble.user {
    background-color: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
    align-self: flex-end;
    font-weight: 500;
}

/* Drag Node Mock */
.node-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 12px;
    max-width: 300px;
    margin: 0 auto;
}

.node-item {
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 1px solid var(--border-glass);
}

.node-item.green { background-color: rgba(39, 201, 63, 0.1); border-color: #27c93f; }
.node-item.blue { background-color: rgba(79, 172, 254, 0.1); border-color: #4facfe; }
.node-item.purple { background-color: rgba(127, 0, 255, 0.1); border-color: #7f00ff; }

.node-icon {
    font-size: 1.2rem;
}

.node-lbl {
    font-size: 0.8rem;
    font-weight: 600;
}

.node-line {
    width: 2px;
    height: 30px;
    background-color: rgba(255,255,255,0.15);
}

/* CRM Shared Inbox Mock */
.crm-inbox-mock {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.crm-header {
    background: linear-gradient(135deg, hsla(var(--primary), 0.2), hsla(var(--cyan), 0.1));
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crm-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crm-header-icon {
    font-size: 1rem;
}

.crm-header-title {
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: hsl(var(--white));
}

.crm-header-status {
    display: flex;
    align-items: center;
}

.crm-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #27c93f;
    background-color: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
}

.crm-body {
    display: flex;
    height: 260px;
}

.crm-sidebar {
    width: 120px;
    background-color: rgba(0, 0, 0, 0.15);
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.crm-convo {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.crm-convo.active {
    background-color: hsla(var(--cyan), 0.08);
    border-left: 2px solid hsl(var(--cyan));
}

.crm-convo:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.crm-convo-avatar {
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-convo-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
    flex: 1;
}

.crm-convo-name {
    font-size: 0.62rem;
    font-weight: 600;
    color: hsl(var(--white));
}

.crm-convo-msg {
    font-size: 0.55rem;
    color: hsl(var(--text-muted));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crm-convo-badge {
    font-size: 0.5rem;
    background-color: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.08);
}

.crm-chat-msgs {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.crm-msg {
    max-width: 85%;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    line-height: 1.4;
}

.crm-msg.received {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: hsl(var(--text-main));
    align-self: flex-start;
}

.crm-msg.sent {
    background-color: hsla(var(--cyan), 0.12);
    border: 1px solid hsla(var(--cyan), 0.2);
    color: hsl(var(--text-main));
    align-self: flex-end;
}

.crm-msg-text {
    display: block;
}

.crm-msg-time {
    display: block;
    font-size: 0.5rem;
    color: hsl(var(--text-muted));
    margin-top: 2px;
    text-align: right;
}

.crm-internal-note {
    background-color: rgba(255, 183, 0, 0.06);
    border-left: 2px solid #ffb800;
    padding: 6px 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-self: flex-start;
    max-width: 90%;
}

.crm-note-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #ffb800;
    text-transform: uppercase;
}

.crm-note-text {
    font-size: 0.62rem;
    color: hsl(var(--text-muted));
    font-style: italic;
}

.crm-chat-input-bar {
    border-top: 1px solid var(--border-glass);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.crm-input-placeholder {
    font-size: 0.65rem;
    color: hsl(var(--text-muted));
}

.crm-assign-badge {
    font-size: 0.6rem;
    color: hsl(var(--cyan));
    background-color: hsla(var(--cyan), 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Social Media Grid Mock (for Website Building service) */
.social-grid-mock {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.sgm-header {
    background: linear-gradient(135deg, hsla(var(--primary), 0.2), hsla(var(--cyan), 0.1));
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sgm-title {
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: hsl(var(--white));
}

.sgm-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--cyan));
    background-color: hsla(var(--cyan), 0.1);
    border: 1px solid hsla(var(--cyan), 0.3);
    padding: 2px 8px;
    border-radius: 4px;
}

.sgm-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.sgm-platform {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.sgm-platform:hover {
    border-color: hsla(var(--cyan), 0.25);
}

.sgm-platform.linkedin {
    border-left: 3px solid #0A66C2;
}

.sgm-platform.facebook {
    border-left: 3px solid #1877F2;
}

.sgm-platform.instagram {
    border-left: 3px solid #E4405F;
}

.sgm-platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sgm-platform-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.sgm-company {
    font-size: 0.65rem;
    font-weight: 700;
    color: hsl(var(--white));
    letter-spacing: -0.01em;
}

.sgm-text {
    font-size: 0.68rem;
    color: hsl(var(--text-muted));
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sgm-engagement {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    font-size: 0.6rem;
    color: hsl(var(--text-muted));
}

.sgm-engagement span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.sgm-footer {
    border-top: 1px solid var(--border-glass);
    padding: 8px 14px;
    background-color: rgba(0, 0, 0, 0.1);
}

.sgm-footer span {
    font-size: 0.65rem;
    color: hsl(var(--text-muted));
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ================= CASE STUDIES ================= */
.case-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 30px;
}

.case-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    color: hsl(var(--text-main));
}

.case-intro {
    font-size: 1.05rem;
    color: hsl(var(--white));
    margin-bottom: 20px;
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

.c-detail {
    font-size: 0.88rem;
}

.c-detail strong {
    color: hsl(var(--white));
}

.case-stats {
    background-color: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
}

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

.c-val {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: hsl(var(--cyan));
}

.c-lbl {
    font-size: 0.65rem;
    color: hsl(var(--text-muted));
    text-transform: uppercase;
}

/* ================= DONE-FOR-YOU CUSTOM WEBSITE BUILD ================= */
.website-build-card {
    background: linear-gradient(135deg, hsla(var(--primary), 0.12), hsla(var(--cyan), 0.08));
    border: 1px solid hsla(var(--cyan), 0.25);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px hsla(var(--cyan), 0.05);
    position: relative;
    overflow: hidden;
}

.website-build-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--cyan)), hsl(var(--primary)));
}

.ws-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #ff5f56, #ff8c42);
    color: hsl(var(--white));
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.website-build-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: hsl(var(--white));
}

.ws-subtitle {
    font-size: 1rem;
    color: hsl(var(--text-muted));
    max-width: 600px;
    margin: 0 auto 24px;
}

.ws-pricing-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ws-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px 28px;
    min-width: 180px;
    transition: var(--transition-smooth);
}

.ws-tier:hover {
    border-color: hsla(var(--cyan), 0.4);
    transform: translateY(-3px);
}

.ws-price {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: hsl(var(--cyan));
    line-height: 1.2;
}

.ws-label {
    font-size: 0.85rem;
    color: hsl(var(--text-main));
    margin-top: 4px;
}

.ws-label small {
    display: block;
    font-size: 0.72rem;
    color: hsl(var(--text-muted));
    margin-top: 2px;
}

.ws-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-glass);
}

/* Mini-bullets for website build callout */
.ws-mini-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 25px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.ws-bullet {
    display: inline-block;
    padding: 5px 14px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.82rem;
    color: hsl(var(--text-main));
    font-weight: 500;
    transition: var(--transition-smooth);
}

.ws-bullet:hover {
    border-color: hsla(var(--cyan), 0.4);
    color: hsl(var(--cyan));
}

.ws-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ws-features li {
    font-size: 0.88rem;
    color: hsl(var(--text-main));
    white-space: nowrap;
}

/* ================= COUPON CODE BAR ================= */
.coupon-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.coupon-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 460px;
    width: 100%;
}

.coupon-input {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px 16px;
    color: hsl(var(--text-main));
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.coupon-input:focus {
    border-color: hsl(var(--cyan));
    box-shadow: 0 0 10px hsla(var(--cyan), 0.15);
}

.coupon-input::placeholder {
    color: hsl(var(--text-muted));
    opacity: 0.7;
}

.coupon-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    flex-shrink: 0;
    border-radius: 8px;
}

.coupon-success-msg {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 8px 18px;
    border-radius: 6px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

.coupon-error-msg {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff5f56;
    background-color: rgba(255, 95, 86, 0.08);
    border: 1px solid rgba(255, 95, 86, 0.25);
    padding: 8px 18px;
    border-radius: 6px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

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

@media (max-width: 767px) {
    .website-build-card {
        padding: 30px 20px;
    }
    .website-build-card h3 {
        font-size: 1.4rem;
    }
    .ws-pricing-row {
        flex-direction: column;
        gap: 12px;
    }
    .ws-divider {
        width: 80px;
        height: 1px;
    }
    .ws-tier {
        min-width: unset;
        width: 100%;
        max-width: 260px;
        padding: 16px 20px;
    }
    .ws-price {
        font-size: 2rem;
    }
    .ws-features li {
        white-space: normal;
        text-align: center;
    }
    .coupon-input-group {
        flex-direction: column;
    }
    .coupon-btn {
        width: 100%;
    }
}

/* ================= PRICING ================= */

/* 50% Founder's Discount badge above each price */
.discount-badge-above {
    display: inline-block;
    background: linear-gradient(135deg, #ff5f56, #ff8c42);
    color: hsl(var(--white));
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    text-align: center;
    width: fit-content;
}

/* Crossed-out original price styling */
.original-price {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-right: 6px;
    vertical-align: middle;
}
.billing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.billing-toggle-wrapper span {
    font-size: 0.9rem;
    font-weight: 500;
}

.discount-badge {
    background-color: #ff5f56;
    color: hsl(var(--white));
    padding: 2px 6px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: hsl(var(--cyan));
    transition: .4s;
}

input:checked + .slider {
    background-color: hsl(var(--primary));
}

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

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Price Cards */
.price-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-card.popular {
    border-color: hsl(var(--cyan));
    box-shadow: 0 10px 30px hsla(var(--cyan), 0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    color: hsl(var(--white));
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.price-desc {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.price-amount {
    margin: 10px 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--white));
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: hsl(var(--white));
}

.period {
    font-size: 0.88rem;
    color: hsl(var(--text-muted));
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.price-features li {
    font-size: 0.85rem;
    color: hsl(var(--text-main));
}

/* ================= ABOUT ME ================= */
.Bridging-Elite-AI {
    font-size: 2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.avatar-glow {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    padding: 3px;
    box-shadow: 0 0 30px hsla(var(--cyan), 0.3);
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: hsl(var(--bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.highlight-p {
    font-size: 1.15rem;
    font-weight: 500;
    color: hsl(var(--white));
    border-left: 3px solid hsl(var(--cyan));
    padding-left: 15px;
    margin-bottom: 25px;
}

.philosophy-box {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.philosophy-box h3 {
    margin-bottom: 12px;
}

.philosophy-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.philosophy-box li {
    font-size: 0.9rem;
}

/* ================= BLOG ================= */
.blog-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--cyan), 0.4);
}

.blog-img {
    height: 160px;
    background: linear-gradient(135deg, hsla(var(--primary), 0.1), hsla(var(--cyan), 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-body {
    padding: 20px;
}

.blog-date {
    display: block;
    font-size: 0.72rem;
    color: hsl(var(--text-muted));
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.88rem;
    margin-bottom: 15px;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
}


/* ================= BOOKING WIDGET (single column, no form) ================= */
.booking-widget-single {
    max-width: 600px;
    margin: 0 auto;
}

.booking-card-box {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.booking-card-box h3 {
    margin-bottom: 6px;
}

.booking-subtitle {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
    margin-bottom: 20px;
}

/* AI Chat Box */
.ai-chat-box {
    margin-top: 20px;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
    animation: fadeIn 0.35s ease-out;
}

.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--cyan));
}

.ai-chat-messages {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.ai-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    animation: msgSlide 0.25s ease-out;
    word-break: break-word;
}

.ai-msg.ai-bot {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: hsl(var(--text-main));
    align-self: flex-start;
}

.ai-msg.ai-user {
    background-color: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
    font-weight: 500;
    align-self: flex-end;
}

.ai-chat-input {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ai-chat-input input {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 8px 12px;
    color: hsl(var(--text-main));
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition-smooth);
}

.ai-chat-input input:focus {
    border-color: hsl(var(--cyan));
    box-shadow: 0 0 8px hsla(var(--cyan), 0.1);
}

.ai-chat-input input::placeholder {
    color: hsl(var(--text-muted));
    opacity: 0.8;
}

.ai-chat-input button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    color: hsl(var(--white));
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.ai-chat-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px hsla(var(--cyan), 0.3);
}

.ai-chat-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Loading dots */
.ai-chat-loading {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    margin-bottom: 8px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: hsl(var(--text-muted));
    animation: dotBounce 1.4s ease-in-out infinite;
}

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

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

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

/* Booking success */
.booking-success-box {
    margin-top: 20px;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

/* ================= FLOATING SPEECH BUBBLE ================= */
.bot-float-bubble {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 89;
    background-color: hsl(var(--bg-card));
    border: 1px solid hsla(var(--cyan), 0.4);
    border-radius: 14px;
    padding: 10px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: floatBubble 2s ease-in-out infinite;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bot-float-bubble span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--cyan));
    white-space: nowrap;
}

.bot-float-bubble .bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid hsl(var(--bg-card));
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

.bot-float-bubble.hidden-bubble {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
}

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

.bot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

@media (max-width: 767px) {
    .booking-card-box {
        padding: 20px;
    }
    .ai-chat-messages {
        height: 160px;
    }
}

/* ================= CONTACT & SCHEDULER (legacy) ================= */
.contact-card-box, .scheduler-card-box {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.contact-card-box h3, .scheduler-card-box h3 {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.82rem;
    color: hsl(var(--white));
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 10px 14px;
    color: hsl(var(--text-main));
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: hsl(var(--cyan));
    box-shadow: 0 0 10px hsla(var(--cyan), 0.15);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.radio-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem !important;
}

/* Success State Styles */
.success-state {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(39, 201, 63, 0.1);
    border: 2px solid #27c93f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #27c93f;
    animation: scaleUp 0.3s ease-out;
}

/* Scheduler Widget */
.scheduler-desc {
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.calendar-widget {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 20px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cal-header span {
    font-weight: 600;
    font-family: var(--font-heading);
}

.cal-nav {
    display: flex;
    gap: 12px;
}

.cal-arrow {
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    font-size: 0.72rem;
    color: hsl(var(--text-muted));
    margin-bottom: 10px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.cal-day.disabled {
    color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.cal-day.active-day {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
}

.cal-day.active-day:hover {
    border-color: hsl(var(--cyan));
}

.cal-day.selected-day {
    background-color: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
    font-weight: 700;
}

/* Time slots container */
.time-slots-wrapper {
    margin-top: 20px;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

.time-slots-wrapper h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.time-slot-btn {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    color: hsl(var(--cyan));
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.time-slot-btn:hover {
    background-color: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
}

.local-seo-box h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.local-seo-box p {
    font-size: 0.78rem;
    line-height: 1.4;
}

.tech-tag {
    display: inline-block;
    font-size: 0.65rem;
    color: hsl(var(--text-muted));
    border: 1px solid var(--border-glass);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ================= FOOTER ================= */
.site-footer {
    border-top: 1px solid var(--border-glass);
    background-color: #050608;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand p {
    margin-top: 10px;
    font-size: 0.85rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.822) !important;
    margin-top: 15px;
}

.footer-links {
    order: 2;
}

.footer-legal {
    order: 3;
}

.footer-address {
    order: 4;
}

.footer-links h4,
.footer-legal h4,
.footer-address h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-legal ul,
.footer-address ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.foot-link {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

.footer-legal li,
.footer-address li {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

/* ================= WHATSAPP FLOATING WIDGET ================= */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 90;
}

.wa-bubble {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
}

.wa-notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    background-color: #ff5f56;
    color: hsl(var(--white));
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-svg {
    width: 26px;
    height: 26px;
    color: hsl(var(--white));
}

.wa-popup {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 280px;
    background-color: #0b141a;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    animation: slideUp 0.3s ease-out;
}

.wa-popup-header {
    background-color: #128c7e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.wa-popup-avatar {
    font-size: 1.1rem;
}

.wa-popup-title-box {
    display: flex;
    flex-direction: column;
}

.wa-popup-title-box strong {
    color: hsl(var(--white));
    font-size: 0.78rem;
}

.wa-popup-title-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
}

.wa-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: hsl(var(--white));
    cursor: pointer;
    font-size: 1.1rem;
}

.wa-popup-body {
    padding: 14px;
}

.wa-popup-body p {
    font-size: 0.78rem;
    color: #e9edef;
    margin-bottom: 0;
}

.wa-popup-footer {
    padding: 10px 14px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-glass);
}

.btn-wa-send {
    display: block;
    width: 100%;
    background-color: #25d366;
    color: hsl(var(--white));
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-wa-send:hover {
    background-color: #20ba5a;
    color: hsl(var(--white));
}



.bot-bubble {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--cyan)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px hsla(var(--cyan), 0.3);
    position: relative;
}

.bot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid hsl(var(--cyan));
    animation: pulse 1.8s infinite;
}

.bot-svg {
    width: 22px;
    height: 22px;
    color: hsl(var(--white));
}

.bot-window {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 320px;
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

.bot-win-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.bot-win-avatar {
    font-size: 1.1rem;
}

.bot-win-title {
    display: flex;
    flex-direction: column;
}

.bot-win-title strong {
    color: hsl(var(--white));
    font-size: 0.78rem;
}

.bot-win-title span {
    color: hsl(var(--cyan));
    font-size: 0.62rem;
    font-weight: 500;
}

.bot-win-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: hsl(var(--text-muted));
    cursor: pointer;
    font-size: 1.1rem;
}

.bot-win-messages {
    height: 200px;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.1);
}

.bot-msg-line {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.4;
    word-break: break-word;
}

.bot-msg-line a,
.ai-msg a {
    color: #00e5f5 !important;
    text-decoration: underline !important;
    font-weight: 600;
    pointer-events: auto;
    cursor: pointer;
    word-break: break-all;
}

.bot-msg-line a:hover,
.ai-msg a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.bot-msg-line.bot {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: hsl(var(--text-main));
    align-self: flex-start;
}

.bot-msg-line.user {
    background-color: hsl(var(--cyan));
    color: hsl(var(--bg-dark));
    font-weight: 500;
    align-self: flex-end;
}

.bot-win-chips {
    padding: 8px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid var(--border-glass);
}

.prompt-chip {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: hsl(var(--text-muted));
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.68rem;
    cursor: pointer;
}

.prompt-chip:hover {
    border-color: hsl(var(--cyan));
    color: hsl(var(--cyan));
}

.bot-win-input {
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    border-top: 1px solid var(--border-glass);
    background-color: rgba(0, 0, 0, 0.15);
}

.bot-win-input textarea {
    flex-grow: 1;
    background: none;
    border: none;
    outline: none;
    color: hsl(var(--text-main));
    font-size: 0.75rem;
    resize: none;
    max-height: 120px;
    overflow-y: auto;
    font-family: inherit;
    line-height: 1.4;
}

/* ================= BOT INPUT FIELD — AUTO-EXPANDING TEXTAREA ================= */
#bot-input-field {
    color: #ffffff !important;
    border: 1px solid rgb(255, 255, 255) !important;
    border-radius: 6px;
    background-color: transparent;
    padding: 8px 12px;
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
    max-height: 120px;
    overflow-y: auto;
    width: 100%;
    display: block;
    font-family: inherit;
    font-size: 0.75rem;
    line-height: 1.4;
    box-sizing: border-box;
}
#bot-input-field:focus {
    border-color: #00d2ff !important;
}
#bot-input-field::placeholder {
    color: rgb(255, 255, 255);
}
/* Scrollbar styling inside the textarea (dark theme) */
#bot-input-field::-webkit-scrollbar {
    width: 6px;
}
#bot-input-field::-webkit-scrollbar-track {
    background: transparent;
}
#bot-input-field::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.bot-win-input button {
    background: none;
    border: none;
    color: hsl(var(--cyan));
    font-weight: 700;
    cursor: pointer;
}

/* ================= VOICE CHAT MIC BUTTON ================= */
.btn-voice {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    padding: 0 !important;
    background: none;
    border: none;
    color: hsl(var(--text-muted));
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-voice:hover {
    color: hsl(var(--cyan));
    background-color: hsla(var(--cyan), 0.1);
}

.btn-voice .mic-icon {
    width: 18px;
    height: 18px;
    display: block;
}

/* Listening state — pulsing red */
.btn-voice.is-listening {
    color: #ff3b30 !important;
    background-color: rgba(255, 59, 48, 0.12) !important;
    animation: micPulse 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
}

@keyframes micPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* Processing/loading state — disabled style */
.btn-voice.is-processing {
    color: hsl(var(--text-muted)) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    cursor: not-allowed;
    opacity: 0.5;
    animation: none;
    box-shadow: none;
}

.btn-voice.is-processing:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: hsl(var(--text-muted)) !important;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-loc-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.location-loc-card:hover {
    border-color: hsla(var(--cyan), 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.location-loc-card .location-icon {
    margin-bottom: 20px;
    background-color: hsla(var(--cyan), 0.08);
    border: 1px solid hsla(var(--cyan), 0.2);
    border-radius: 12px;
    padding: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-loc-card h2 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: hsl(var(--white));
}

.location-loc-card .address-box {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 340px;
}

.location-loc-card .address-line {
    font-size: 1rem;
    color: hsl(var(--white));
    font-weight: 500;
    font-family: var(--font-heading);
    margin-bottom: 2px;
    line-height: 1.5;
}

.location-loc-card .location-note {
    font-size: 0.88rem;
    margin-top: 0;
    color: hsl(var(--text-muted));
    line-height: 1.6;
    max-width: 320px;
}

@media (max-width: 767px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .location-loc-card {
        padding: 30px 20px;
    }
    
    .location-loc-card h2 {
        font-size: 1.15rem;
    }
    
    .location-loc-card .address-line {
        font-size: 0.92rem;
    }
}

.footer-address p {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

.footer-addr-sep {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ================= FOOTER SOCIAL ICONS (brand column) ================= */
.footer-brand .footer-social-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 15px 0;
}

.footer-brand .social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: hsl(var(--text-muted));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-brand .social-icon-link:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-brand .social-icon-link:hover .social-svg {
    color: hsl(var(--white));
}

.footer-brand .social-icon-link[aria-label="LinkedIn"]:hover {
    background-color: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 0 16px rgba(10, 102, 194, 0.4);
}

.footer-brand .social-icon-link[aria-label="Facebook"]:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 16px rgba(24, 119, 242, 0.4);
}

.footer-brand .social-icon-link[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    box-shadow: 0 0 16px rgba(214, 36, 159, 0.4);
}

.footer-brand .social-icon-link[aria-label="WhatsApp"]:hover {
    background-color: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.4);
}

.footer-brand .social-icon-link[aria-label="X (Twitter)"]:hover {
    background-color: #000000;
    border-color: #333333;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

.footer-brand .social-svg {
    width: 18px;
    height: 18px;
    color: hsl(var(--text-muted));
    transition: color 0.3s ease;
}

/* ================= MODAL LAYOUTS ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    width: 90%;
    max-width: 460px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-premium);
    animation: modalScale 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    color: hsl(var(--text-muted));
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.82rem;
    margin-bottom: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 10px;
}


/* ================= BOT PULSE DOT & HEADER ================= */
.bot-pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #27c93f;
    box-shadow: 0 0 8px rgba(39, 201, 63, 0.6);
    animation: botPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes botPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.bot-how-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background-color: rgba(0, 229, 245, 0.06);
    border-bottom: 1px solid var(--border-glass);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: hsl(var(--cyan));
}

/* Animations */
@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

@keyframes modalScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */

.privacy-container {
    max-width: 880px;
    margin: 0 auto;
}

.privacy-card {
    background-color: hsl(var(--bg-card));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.privacy-card:hover {
    border-color: hsla(var(--cyan), 0.15);
}

.privacy-card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: hsl(var(--white));
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.privacy-card h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: hsl(var(--cyan));
    font-weight: 600;
}

.privacy-card h3:first-of-type {
    margin-top: 0;
}

.privacy-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: hsl(var(--text-main));
    margin-bottom: 16px;
}

.privacy-intro {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: hsl(var(--text-main)) !important;
}

.privacy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0 20px 0;
}

.privacy-list li {
    font-size: 0.95rem;
    color: hsl(var(--text-main));
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.privacy-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: hsl(var(--cyan));
    font-weight: 700;
}

.privacy-list li strong {
    color: hsl(var(--white));
}

/* Emphasis / Highlight Text */
.privacy-emphasis {
    background: linear-gradient(135deg, hsla(var(--primary), 0.1), hsla(var(--cyan), 0.08));
    border-left: 4px solid hsl(var(--cyan));
    padding: 16px 20px !important;
    border-radius: 6px;
    font-size: 1.05rem !important;
    margin-bottom: 20px !important;
    color: hsl(var(--white)) !important;
}

/* Highlighted Data Deletion Card */
.privacy-card-highlight {
    border: 2px solid hsla(var(--cyan), 0.4);
    background: linear-gradient(135deg, hsla(var(--cyan), 0.03), hsla(var(--primary), 0.05));
    position: relative;
    overflow: hidden;
}

.privacy-card-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--cyan)));
}

.deletion-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, hsla(var(--primary), 0.2), hsla(var(--cyan), 0.2));
    border: 1px solid hsla(var(--cyan), 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: hsl(var(--cyan));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deletion-icon {
    font-size: 1.4rem;
}

/* Deletion Step Cards */
.deletion-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 25px;
}

.deletion-step {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 22px 24px;
    transition: var(--transition-smooth);
}

.deletion-step:hover {
    border-color: hsla(var(--cyan), 0.25);
}

.deletion-step h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: hsl(var(--white));
}

.deletion-step ol {
    list-style: decimal;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.deletion-step ol li {
    font-size: 0.9rem;
    color: hsl(var(--text-main));
    line-height: 1.5;
    padding-left: 4px;
}

.deletion-note {
    font-size: 0.85rem !important;
    color: hsl(var(--text-muted)) !important;
    font-style: italic;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
}

.deletion-contact-box {
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid hsla(var(--cyan), 0.2);
    border-radius: 10px;
    padding: 22px 24px;
    margin: 15px 0 20px;
}

.deletion-email {
    font-size: 1.15rem !important;
    color: hsl(var(--cyan)) !important;
    text-align: center;
    margin-bottom: 15px !important;
}

.deletion-warning {
    background-color: hsla(var(--primary), 0.08);
    border: 1px solid hsla(var(--primary), 0.25);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: hsl(var(--text-main));
}

.deletion-warning strong {
    color: #ffb800;
}

/* Contact Info Box */
.contact-info-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.contact-info-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-info-label {
    font-size: 0.92rem;
    color: hsl(var(--text-muted));
    min-width: 100px;
    font-weight: 500;
}

.contact-info-value {
    font-size: 0.95rem;
    color: hsl(var(--white));
}

.privacy-footer-note {
    font-size: 0.9rem !important;
    color: hsl(var(--text-muted)) !important;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
    margin-top: 15px;
}

/* Muted Card (changes/updates notice) */
.privacy-card-muted {
    background-color: rgba(255, 255, 255, 0.02);
    border-style: dashed;
}

.privacy-card-muted h3 {
    color: hsl(var(--text-main));
}

/* Responsive */
@media (min-width: 768px) {
    .contact-info-box {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .privacy-card {
        padding: 24px 20px;
    }

    .privacy-card h2 {
        font-size: 1.4rem;
    }

    .deletion-step {
        padding: 18px 16px;
    }

    .deletion-banner {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .contact-info-label {
        min-width: auto;
    }
}

/* ==========================================================================
   Responsive Viewports / Media Queries
   ========================================================================== */

@media (min-width: 768px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .grid-2col {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
    
        .footer-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    
    .footer-brand {
        flex: 0 0 30%;
        max-width: 30%;
    }
    
    .footer-links,
    .footer-address,
    .footer-legal {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .reverse {
        direction: rtl;
    }
    
    .reverse > * {
        direction: ltr; /* Reset text direction inside */
    }
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: hsl(var(--bg-dark));
        transition: 0.3s;
        border-top: 1px solid var(--border-glass);
    }
    
    .main-nav.mobile-active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .site-header {
        padding: 0 10px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .calc-body {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        left: 20px;
    }
    
            .footer-grid {
        flex-direction: column;
        flex-wrap: wrap;
    }
    
                .footer-brand,
    .footer-links,
    .footer-address,
    .footer-legal {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
        .bot-widget {
        bottom: 20px;
        right: 20px;
    }

    .bot-float-bubble {
        bottom: 80px;
        right: 20px;
    }
    .bot-float-bubble span {
        font-size: 0.78rem;
    }
}
