/* ========================================
   EVIOS HQ - Semi-Dark Blue UI
   Professional, Smooth, Premium
   ======================================== */

:root {
    /* Backgrounds - Deep Slate */
    --bg-page: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #273449;
    
    /* Blues */
    --blue: #3b82f6;
    --blue-bright: #60a5fa;
    --blue-dark: #2563eb;
    --blue-darker: #1e40af;
    --blue-soft: #1e3a5f;
    --blue-glow: rgba(59, 130, 246, 0.2);
    --blue-glow-strong: rgba(59, 130, 246, 0.35);
    
    /* Text - Light for dark mode */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Accents */
    --success: #34d399;
    --success-bg: rgba(16, 185, 129, 0.15);
    --success-border: rgba(16, 185, 129, 0.3);
    --error: #f87171;
    --error-bg: rgba(239, 68, 68, 0.15);
    --error-border: rgba(239, 68, 68, 0.3);
    
    /* Borders */
    --border: rgba(148, 163, 184, 0.15);
    --border-light: rgba(148, 163, 184, 0.08);
    
    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

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

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 30px;
    background: var(--bg-page);
    overflow: hidden;
    padding-top: calc(60px + env(safe-area-inset-top));
}

/* Floating Shapes - Hidden to prevent background line */
.hero-shapes {
    display: none;
}

.hero-title {
    font-size: clamp(2.25rem, 7vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.scroll-indicator {
    font-size: 0.875rem;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
    transition: color 0.2s;
}

.scroll-indicator:hover { color: var(--blue-bright); }
.scroll-indicator svg { width: 20px; height: 20px; }

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

/* ========================================
   FLOW SECTION
   ======================================== */
.flow-section {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 30px 20px 60px;
}

.flow-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-page);
    pointer-events: none;
}

/* Subtle blue glow in center */
.flow-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.flow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Overview */
.flow-overview {
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.flow-section.zoomed .flow-overview {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.flow-track {
    position: relative;
    padding: 40px 0;
}

/* Connector Line */
.flow-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.35) 15%, 
        rgba(59, 130, 246, 0.5) 50%, 
        rgba(59, 130, 246, 0.35) 85%, 
        transparent 100%
    );
    transform: translateY(-50%);
    border-radius: 1px;
}

/* Soft glow underneath the line */
.flow-line::before {
    content: '';
    position: absolute;
    inset: -6px 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.12) 15%, 
        rgba(59, 130, 246, 0.2) 50%, 
        rgba(59, 130, 246, 0.12) 85%, 
        transparent 100%
    );
    filter: blur(10px);
    border-radius: 6px;
}

/* Pulse Animation */
.flow-pulse {
    position: absolute;
    top: -4px;
    left: -100px;
    width: 100px;
    height: 10px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(96, 165, 250, 0.5), 
        rgba(59, 130, 246, 0.8), 
        rgba(96, 165, 250, 0.5), 
        transparent
    );
    border-radius: 5px;
    filter: blur(2px);
    animation: pulse 5s linear infinite;
}

@keyframes pulse {
    0% { left: -100px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: calc(100% + 100px); opacity: 0; }
}

/* Nodes */
.flow-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.flow-node.visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-node:focus { outline: none; }

/* Node Circle - 90px */
.node-circle {
    width: 90px;
    height: 90px;
    background: var(--bg-card);
    border: 2.5px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(59, 130, 246, 0.1);
}

.node-circle svg {
    width: 32px;
    height: 32px;
    color: var(--blue-bright);
    transition: all 0.3s var(--ease);
}

.flow-node:hover {
    transform: translateY(-8px);
}

.flow-node.visible:hover {
    transform: translateY(-8px);
}

.flow-node:hover .node-circle {
    background: var(--blue);
    border-color: var(--blue-bright);
    transform: scale(1.08);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(59, 130, 246, 0.25);
}

.flow-node:hover .node-circle svg {
    color: white;
}

/* Node Label */
.node-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 90px;
    transition: color 0.3s var(--ease);
}

.flow-node:hover .node-label {
    color: var(--blue-bright);
}

/* ========================================
   DETAIL VIEW
   ======================================== */
.flow-detail {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: radial-gradient(900px 500px at 50% 40%, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0.92) 55%);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
}

.flow-section.zoomed .flow-detail {
    opacity: 1;
    visibility: visible;
}

/* Header */
.detail-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.detail-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.detail-back:hover {
    border-color: var(--blue);
    color: var(--blue-bright);
    box-shadow: 0 2px 12px var(--blue-glow);
}

.detail-back svg { width: 16px; height: 16px; }

.detail-counter {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Detail Card */
.detail-card {
    width: 100%;
    max-width: 950px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 60px -15px rgba(0, 0, 0, 0.4),
        0 0 80px -20px rgba(59, 130, 246, 0.15);
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition: all 0.35s var(--ease-out);
}

.flow-section.zoomed .detail-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.detail-phone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========================================
   IPHONE MOCKUP - Enhanced Realism
   ======================================== */
.iphone {
    position: relative;
    width: 280px;
    height: 580px;
}

.iphone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d2d30 0%, #1c1c1e 50%, #0f0f10 100%);
    border-radius: 54px;
    padding: 10px;
    position: relative;
    box-shadow: 
        inset 0 0 0 1px rgba(255,255,255,0.12),
        inset 0 0 0 2px rgba(0,0,0,0.4),
        inset 0 2px 4px rgba(255,255,255,0.05),
        0 35px 80px -25px rgba(0, 0, 0, 0.6),
        0 0 100px -35px rgba(59, 130, 246, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.iphone-frame::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 52px;
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 44px;
    background: radial-gradient(140% 80% at 25% 15%, rgba(255,255,255,.12), transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.8;
}

/* Dynamic Island - Enhanced */
.iphone-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 36px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 18px;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.island-camera {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #2a4a6f 0%, #0f1f3f 50%, #000 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 3px rgba(255,255,255,0.25),
        0 0 2px rgba(0,0,0,0.6),
        0 1px 2px rgba(0,0,0,0.4);
}

.island-camera::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
    border-radius: 50%;
    top: 4px;
    right: 22px;
    box-shadow: 0 0 3px rgba(255,255,255,0.4);
}

/* Screen - Lighter Background */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 46px;
    overflow: hidden;
    position: relative;
}

/* Side Buttons */
.iphone-buttons .btn-silent {
    position: absolute;
    left: -2px;
    top: 100px;
    width: 3px;
    height: 28px;
    background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2c 100%);
    border-radius: 0 2px 2px 0;
}

.iphone-buttons .btn-volume {
    position: absolute;
    left: -2px;
    top: 145px;
    width: 3px;
    height: 55px;
    background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2c 100%);
    border-radius: 0 2px 2px 0;
}

.iphone-buttons .btn-power {
    position: absolute;
    right: -2px;
    top: 160px;
    width: 3px;
    height: 70px;
    background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2c 100%);
    border-radius: 2px 0 0 2px;
}

/* ========================================
   DEMO CONTENT - Light Theme
   ======================================== */
.demo {
    height: 100%;
    padding: 58px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #1e293b;
    font-family: var(--font);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    box-sizing: border-box;
}

.demo-topbar {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(30, 41, 59, 0.7);
    z-index: 5;
    font-weight: 600;
    pointer-events: none;
}

.demo-topbar .dots {
    width: 34px;
    height: 6px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.2);
}

.demo-title {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #1e293b;
    margin-bottom: 4px;
    margin-top: 0;
}

.demo-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    padding: 10px 12px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    min-height: fit-content;
    word-wrap: break-word;
    transition: opacity 0.2s ease;
}

.demo-card.ok {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.demo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    min-width: 0;
}

.demo-row b {
    color: #1e293b;
    font-weight: 600;
    flex-shrink: 0;
}

.demo-sub {
    margin-top: 4px;
    font-size: 11.5px;
    color: rgba(30, 41, 59, 0.65);
    line-height: 1.4;
    word-wrap: break-word;
}

.pill {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #475569;
    white-space: nowrap;
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.pill.blue {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.pill.green {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.pill.amber {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

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

/* Referral chat bubbles - Light theme */
.demo-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bubble {
    max-width: 85%;
    padding: 9px 12px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: opacity 0.2s ease;
}

.bubble.out {
    align-self: flex-end;
    background: var(--blue);
    color: white;
    border-bottom-right-radius: 5px;
    box-shadow: 0 1px 2px rgba(59, 130, 246, 0.2);
}

.bubble.in {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #1e293b;
    border-bottom-left-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Call UI - Light theme */
.call-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease;
}

.call-head {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.call-head .avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(59, 130, 246, 0.2);
}

.call-head > div {
    flex: 1;
    min-width: 0;
}

.call-name {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.call-muted {
    font-size: 11px;
    color: rgba(30, 41, 59, 0.6);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wave {
    margin-top: 10px;
    height: 20px;
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.wave span {
    width: 5px;
    height: 6px;
    border-radius: 999px;
    background: var(--blue);
    animation: wave 1.2s ease-in-out infinite;
    opacity: 0.7;
}

.wave span:nth-child(2) { animation-delay: 0.1s; }
.wave span:nth-child(3) { animation-delay: 0.2s; }
.wave span:nth-child(4) { animation-delay: 0.3s; }
.wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% {
        height: 6px;
        opacity: 0.5;
    }
    50% {
        height: 18px;
        opacity: 1;
    }
}

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

.mini {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    min-width: 0;
    transition: opacity 0.2s ease;
}

.mini b {
    font-size: 11.5px;
    display: block;
    margin-bottom: 6px;
    color: #1e293b;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scheduling - Light theme */
.calendar {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease;
}

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

.cal-head b {
    font-size: 12px;
    color: #1e293b;
    font-weight: 600;
}

.cal-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 7px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.cal-row:first-of-type {
    border-top: none;
}

.cal-row span {
    width: 46px;
    font-size: 11px;
    color: rgba(30, 41, 59, 0.6);
    flex-shrink: 0;
    font-weight: 500;
}

.event {
    flex: 1;
    font-size: 11.5px;
    padding: 7px 9px;
    border-radius: 12px;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #475569;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event.blue {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
    color: #2563eb;
}

.event.ghost {
    opacity: 0.5;
    background: rgba(241, 245, 249, 0.4);
}

/* Quote follow-up - Light theme */
.pipeline {
    display: grid;
    gap: 10px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lane {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease;
}

.lane b {
    font-size: 11.5px;
    color: #1e293b;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.chip {
    font-size: 11.5px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #2563eb;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: inline-block;
}

.lane .step {
    font-size: 11.5px;
    color: rgba(30, 41, 59, 0.75);
    padding: 7px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    /* Override card styles from .step */
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    text-align: left !important;
    display: block !important;
    height: auto !important;
    flex-direction: row !important;
    transition: none !important;
    margin: 0 !important;
}

.lane .step:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* Payments - Light theme */
.invoice {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease;
}

.inv-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.inv-head b {
    font-size: 12px;
    color: #1e293b;
    font-weight: 600;
}

.inv-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 11.5px;
    color: #475569;
    min-width: 0;
    gap: 8px;
}

.inv-line:first-of-type {
    border-top: none;
}

.inv-line.muted {
    color: rgba(30, 41, 59, 0.6);
}

.inv-line span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.inv-line b {
    color: #1e293b;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.pay-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: var(--blue);
    color: white;
    font-weight: 700;
    font-size: 12px;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.pay-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

/* Reviews - Light theme */
.rate {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    transform: translateY(4px);
    animation: demoUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease;
}

.rate b {
    font-size: 12.5px;
    color: #1e293b;
    display: block;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.s {
    width: 14px;
    height: 14px;
    background: rgba(148, 163, 184, 0.3);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 67% 57%, 79% 91%, 50% 70%, 21% 91%, 33% 57%, 2% 35%, 39% 35%);
}

.s.on {
    background: #fbbf24;
}

/* ========================================
   DETAIL CONTENT
   ======================================== */
.detail-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.detail-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-glow) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 26px;
    height: 26px;
    color: var(--blue-bright);
}

.detail-name {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    color: var(--text-primary);
}

.detail-product {
    font-size: 0.9375rem;
    color: var(--blue-bright);
    font-weight: 500;
}

/* Boxes */
.detail-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.box {
    padding: 1rem 1.25rem;
    border-radius: 12px;
}

.box-problem {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
}

.box-solution {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
}

.box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.box-problem h4 { color: var(--error); }
.box-solution h4 { color: var(--success); }

.box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.box-problem .box-icon { background: var(--error-border); }
.box-solution .box-icon { background: var(--success-border); }

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

/* Logic list styling for problem/solution */
.logic-list {
    margin-top: 0.65rem;
    padding-left: 1.05rem;
    display: grid;
    gap: 0.4rem;
}

.logic-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.55;
    list-style: disc;
}

.logic-list .logic-key {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 0.35rem;
}

/* Tags */
.detail-tags {
    display: none !important;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: var(--blue-glow);
    border: 1px solid var(--blue);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-bright);
}

/* ========================================
   STAGE PICKER
   ======================================== */
.stage-picker {
    position: static;
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    margin-top: 1.5rem;
    justify-content: center;
}

.picker-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.picker-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: color 0.25s var(--ease);
}

.picker-btn:hover {
    background: var(--blue-glow);
    border-color: var(--blue-soft);
}

.picker-btn:hover svg { color: var(--blue-bright); }

.picker-btn.active {
    background: var(--blue);
    border-color: var(--blue-bright);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
}

.picker-btn.active svg { color: white; }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 20px;
    background: var(--bg-page);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.3);
}

.step-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.25rem;
    background: var(--blue-glow);
    border: 1px solid var(--blue-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-bright);
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

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

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 80px 20px 100px;
    background: var(--bg-page);
}

.cta-box {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 
        0 20px 50px -15px rgba(0, 0, 0, 0.4),
        0 0 60px -20px rgba(59, 130, 246, 0.2);
}

.cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--blue);
    color: white;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.btn-primary svg { width: 20px; height: 20px; }

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -8px rgba(59, 130, 246, 0.6);
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 20px 2rem;
}

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

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo span { color: var(--blue-bright); }

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue-bright); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet Landscape (900px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 32vh;
        padding: 50px 20px 30px;
        padding-top: calc(50px + env(safe-area-inset-top));
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* Tablet Portrait (768px - 900px) */
@media (max-width: 900px) {
    .node-circle { width: 76px; height: 76px; }
    .node-circle svg { width: 28px; height: 28px; }
    .node-label { font-size: 0.6875rem; max-width: 76px; }
    
    .detail-card {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 2rem;
        padding: 2rem;
        max-height: 90vh;
    }
    
    .detail-phone { order: 1; }
    .detail-content { 
        order: 2;
        max-height: calc(90vh - 300px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .detail-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .detail-content::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .detail-content::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.3);
        border-radius: 2px;
    }
    
    .iphone { 
        width: 240px; 
        height: 500px; 
    }
    
    .iphone-frame { 
        border-radius: 46px; 
        padding: 8px; 
    }
    
    .iphone-screen { 
        border-radius: 40px; 
    }
    
    .iphone-island { 
        width: 110px; 
        height: 32px; 
        top: 14px; 
    }
    
    .detail-card {
        max-width: 90vw;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    /* Demo content - slightly reduced */
    .demo {
        padding: 54px 12px 14px;
        gap: 7px;
    }
    
    .demo-topbar {
        font-size: 10.5px;
    }
    
    .demo-title {
        font-size: 12.5px;
    }
    
    .demo-card {
        padding: 9px 11px;
        font-size: 11.5px;
    }
    
    .demo-row {
        font-size: 11.5px;
    }
    
    .demo-sub {
        font-size: 11px;
    }
    
    .pill {
        font-size: 10.5px;
    }
}

/* Tablet Portrait (640px - 768px) */
@media (max-width: 768px) {
    .flow-track { 
        padding: 50px 0; 
    }
    
    .node-circle { 
        width: 68px; 
        height: 68px; 
    }
    
    .node-circle svg { 
        width: 26px; 
        height: 26px; 
    }
    
    .node-label { 
        font-size: 0.625rem; 
        max-width: 68px; 
    }
    
    .flow-line {
        left: 5%;
        right: 5%;
    }
    
    .detail-card {
        max-width: 600px;
    }
    
    .iphone {
        width: 220px;
        height: 460px;
    }
    
    .iphone-frame {
        border-radius: 42px;
    }
    
    .iphone-screen {
        border-radius: 36px;
    }
    
    .iphone-island {
        width: 100px;
        height: 28px;
        top: 12px;
    }
    
    .steps { 
        grid-template-columns: 1fr; 
        max-width: 100%;
        margin: 0 auto; 
    }
    
    .step {
        padding: 1.75rem 1.25rem;
    }
    
    .cta {
        padding: 70px 20px 90px;
    }
    
    .cta-box {
        padding: 2.5rem 2rem;
    }
    
    .footer {
        padding: 50px 20px 40px;
    }
    
    .footer-row { 
        flex-direction: column; 
        gap: 1.5rem; 
    }
    
    .footer-links { 
        flex-wrap: wrap; 
        gap: 1.25rem; 
    }
}

/* Phone (< 640px) */
@media (max-width: 640px) {
    .container {
        padding: 0 10px;
    }
    
    /* VERTICAL FLOW LAYOUT - PHONE ONLY */
    .flow-track {
        overflow-x: visible;
        overflow-y: visible;
        padding: 30px 0 60px;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .flow-nodes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        min-width: auto;
        width: 100%;
    }
    
    .flow-node {
        scroll-snap-align: none;
    }
    
    /* Vertical connector line */
    .flow-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(59, 130, 246, 0.35) 10%, 
            rgba(59, 130, 246, 0.5) 50%, 
            rgba(59, 130, 246, 0.35) 90%, 
            transparent 100%
        );
    }
    
    .flow-line::before {
        inset: 0 -6px;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(59, 130, 246, 0.12) 10%, 
            rgba(59, 130, 246, 0.2) 50%, 
            rgba(59, 130, 246, 0.12) 90%, 
            transparent 100%
        );
    }
    
    /* Vertical pulse animation */
    .flow-pulse {
        top: -100px;
        left: 50%;
        width: 10px;
        height: 100px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, 
            transparent, 
            rgba(96, 165, 250, 0.5), 
            rgba(59, 130, 246, 0.8), 
            rgba(96, 165, 250, 0.5), 
            transparent
        );
        animation: pulseVertical 5s linear infinite;
    }
    
    @keyframes pulseVertical {
        0% { top: -100px; opacity: 0; }
        5% { opacity: 1; }
        95% { opacity: 1; }
        100% { top: calc(100% + 100px); opacity: 0; }
    }
    
    .node-circle {
        width: 60px;
        height: 60px;
    }
    
    .node-circle svg {
        width: 22px;
        height: 22px;
    }
    
    .node-label {
        font-size: 0.5625rem;
        max-width: 60px;
        line-height: 1.2;
    }
    
    .node-number {
        font-size: 0.625rem;
    }
    
    /* Detail Modal - Full Screen with Scrolling */
    .flow-detail {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .detail-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        padding: 12px 15px;
    }
    
    .detail-back {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
    }
    
    .detail-back span {
        display: none;
    }
    
    .detail-back svg {
        width: 18px;
        height: 18px;
    }
    
    .stage-picker {
        position: static;
        display: flex;
        gap: 8px;
        padding: 10px 12px;
        margin-top: 1.5rem;
        justify-content: center;
        width: 100%;
    }
    
    .picker-btn {
        width: 32px;
        height: 32px;
    }
    
    .picker-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .detail-card {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        gap: 1.5rem;
        padding: 1rem 15px 2rem;
        max-height: none;
        overflow-y: visible;
        margin: 60px 0 20px 0;
        border-radius: 0;
    }
    
    .detail-phone {
        order: 1;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .detail-content {
        order: 2;
        max-height: none;
        overflow-y: visible;
        padding: 0;
    }
    
    /* iPhone - Smaller on mobile */
    .iphone {
        width: 200px;
        height: 420px;
    }
    
    .iphone-frame {
        border-radius: 38px;
        padding: 6px;
    }
    
    .iphone-screen {
        border-radius: 32px;
    }
    
    .iphone-island {
        width: 90px;
        height: 24px;
        top: 10px;
        padding-right: 12px;
    }
    
    .island-camera {
        width: 10px;
        height: 10px;
    }
    
    /* Demo Content - Adjusted for smaller phone */
    .demo {
        padding: 50px 10px 12px;
        gap: 6px;
    }
    
    .demo-topbar {
        top: 14px;
        left: 14px;
        right: 14px;
        font-size: 10px;
    }
    
    .demo-title {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .demo-card {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .demo-row {
        font-size: 11px;
        gap: 6px;
    }
    
    .demo-sub {
        font-size: 10.5px;
        margin-top: 3px;
    }
    
    .pill {
        font-size: 10px;
        padding: 3px 6px;
        max-width: 100px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 30vh;
        padding: 40px 15px 20px;
        padding-top: calc(40px + env(safe-area-inset-top));
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        font-size: 0.8125rem;
    }
    
    .scroll-indicator svg {
        width: 18px;
        height: 18px;
    }
    
    /* Flow Section */
    .flow-section {
        min-height: 50vh;
        padding: 20px 10px 40px;
    }
    
    /* Detail Content Text */
    .detail-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .detail-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .detail-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-product {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .detail-problem h3,
    .detail-solution h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-problem ul,
    .detail-solution ul {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .detail-problem li,
    .detail-solution li {
        margin-bottom: 0.5rem;
    }
    
    .detail-products {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .product-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    /* CTA Section */
    .cta {
        padding: 60px 15px 80px;
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }
    
    .cta-box {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta p {
        font-size: 0.9375rem;
    }
    
    .btn-primary {
        font-size: 0.9375rem;
        padding: 12px 24px;
    }
    
    .cta-note {
        font-size: 0.8125rem;
    }
    
    /* How It Works */
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .step h4 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 15px 30px;
        padding-bottom: calc(30px + env(safe-area-inset-bottom));
    }
    
    .footer-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
}

/* Small Phones (< 375px) */
@media (max-width: 375px) {
    .node-circle {
        width: 55px;
        height: 55px;
    }
    
    .node-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .node-label {
        font-size: 0.5rem;
        max-width: 55px;
    }
    
    .iphone {
        width: 180px;
        height: 380px;
    }
    
    .iphone-frame {
        border-radius: 34px;
        padding: 5px;
    }
    
    .iphone-screen {
        border-radius: 29px;
    }
    
    .iphone-island {
        width: 80px;
        height: 22px;
        top: 8px;
    }
    
    .detail-name {
        font-size: 1.25rem;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.2s !important;
    }
    
    .demo-card,
    .bubble,
    .call-card,
    .mini,
    .calendar,
    .pipeline,
    .invoice,
    .rate {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .wave span {
        animation: none !important;
        height: 12px !important;
        opacity: 0.7 !important;
    }
}
