/* ============================================
   SANTRA LANDING PAGE - MOBILE-FIXED STYLES
   ============================================ */

:root {
    --bg-primary: #05080f;
    --bg-secondary: #0a1019;
    --bg-card: #0f1520;
    --bg-elevated: #141c2b;
    --accent: #00d4aa;
    --accent-secondary: #0891b2;
    --accent-glow: rgba(0, 212, 170, 0.12);
    --orange: #f97316;
    --purple: #a855f7;
    --blue: #3b82f6;
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: #1e293b;
    --border-light: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grid background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVIGATION - FIXED FOR MOBILE
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 8, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    gap: 16px;
}

nav.scrolled {
    border-bottom-color: var(--border);
    padding: 12px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--bg-primary);
}

.logo-text {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile menu toggle - HIDDEN EVERYWHERE */
.mobile-menu-toggle {
    display: none !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #00e6b8;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-light);
    background: var(--border);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 800px;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-left {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--bg-primary);
}

.hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.stat-value {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-screenshot {
    width: calc(100% + 5vw);
    margin-left: calc(-2.5vw - 40px);
    border-radius: 16px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.platform-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls span:nth-child(1) { background: #ff5f57; }
.window-controls span:nth-child(2) { background: #febc2e; }
.window-controls span:nth-child(3) { background: #28c840; }

.preview-tabs {
    display: flex;
    gap: 4px;
}

.preview-tab {
    padding: 6px 14px;
    background: transparent;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.preview-tab.active {
    background: var(--bg-card);
    color: var(--text-primary);
}

.preview-content {
    display: grid;
    grid-template-columns: 56px 200px 1fr;
    min-height: 380px;
}

.preview-leftbar {
    background: #0b223a;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.leftbar-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.15s;
}

.leftbar-icon:hover {
    background: rgba(255,255,255,0.1);
}

.leftbar-icon.active {
    background: var(--accent);
    color: var(--bg-primary);
}

.preview-sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    padding: 16px 12px;
}

.sidebar-section {
    margin-bottom: 20px;
}

.sidebar-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding: 0 8px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s;
}

.sidebar-item:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.sidebar-item.active {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
}

.sidebar-badge {
    margin-left: auto;
    background: var(--orange);
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.preview-main {
    padding: 20px;
    background: var(--bg-primary);
}

.preview-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.ticket-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.ticket-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ticket-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.ticket-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.ticket-status.waiting {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Float cards */
.float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

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

.float-card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 40px;
    left: -60px;
    animation-delay: 1s;
}

.float-card-3 {
    bottom: -30px;
    right: 60px;
    animation-delay: 2s;
}

.float-card-title {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-card-value {
    font-size: 20px;
    font-weight: 700;
}

.float-card-value.green { color: #22c55e; }
.float-card-value.orange { color: var(--orange); }
.float-card-value.blue { color: var(--blue); }

/* ============================================
   MODULES SECTION
   ============================================ */
.modules {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.7;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.module-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.module-card:hover::before {
    opacity: 1;
}

.module-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: var(--accent);
}

.module-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.module-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.module-features {
    list-style: none;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
}

.module-features li i {
    color: var(--accent);
    font-size: 12px;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    padding: 100px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-text {
    max-width: 480px;
}

.feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-desc {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-glow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px;
    min-height: 400px;
}

.feature-visual img {
    width: 100%;
    border-radius: 12px;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.visual-title {
    font-size: 15px;
    font-weight: 600;
}

.visual-badge {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* Dialpad Visual */
.dialpad-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dialpad-screen {
    background: var(--bg-elevated);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.dialpad-number {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.dialpad-contact {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.dialpad-keys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dialpad-key {
    width: 66px;
    height: 66px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.dialpad-key-num {
    font-size: 20px;
    font-weight: 600;
}

.dialpad-key-letters {
    font-size: 8px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.dialpad-call-btn {
    width: 64px;
    height: 64px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 24px;
}

/* Campaign Visual */
.campaign-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.campaign-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.campaign-stat {
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 16px;
}

.campaign-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.campaign-stat-value {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
}

.campaign-stat-value.green { color: #22c55e; }
.campaign-stat-value.blue { color: var(--blue); }
.campaign-stat-value.orange { color: var(--orange); }

.campaign-progress-bar {
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.progress-track {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 100px;
    width: 68%;
}

.campaign-modes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.campaign-mode {
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.campaign-mode.active {
    border-color: var(--accent);
    color: var(--accent);
}

/* CRM Visual */
.crm-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crm-contact-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: 12px;
}

.crm-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.crm-contact-info {
    flex: 1;
    min-width: 0;
}

.crm-contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.crm-contact-info p {
    font-size: 13px;
    color: var(--text-muted);
    word-break: break-word;
}

.crm-tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.crm-tag {
    padding: 3px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-secondary);
}

.crm-tag.vip {
    border-color: var(--orange);
    color: var(--orange);
}

.crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.crm-stat-item {
    background: var(--bg-elevated);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.crm-stat-num {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--accent);
}

.crm-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.crm-timeline {
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 16px;
}

.timeline-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-card);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-text {
    font-size: 13px;
}

.timeline-time {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border);
}

.stat-number {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 4px;
}

.stat-number .accent { color: var(--accent); }

.stat-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 120px 0;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 64px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.pricing-card:hover {
    border-color: var(--border-light);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(0, 212, 170, 0.1);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-amount {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 800;
    letter-spacing: -2px;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-limit {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 8px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-elevated);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.comparison-table th.feature-column,
.comparison-table td.feature-column {
    text-align: left;
    min-width: 240px;
    font-weight: 500;
}

.comparison-table td.feature-column i {
    margin-right: 10px;
    color: var(--text-muted);
    width: 20px;
}

.comparison-table th.highlighted,
.comparison-table td.highlighted {
    background: rgba(0, 212, 170, 0.05);
}

.comparison-table th.highlighted {
    color: var(--accent);
}

.comparison-table tbody tr:hover {
    background: var(--bg-elevated);
}

.comparison-table tbody tr:hover td.highlighted {
    background: rgba(0, 212, 170, 0.08);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .section-row td {
    background: var(--bg-secondary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-align: left;
    padding: 12px 20px;
}

.comparison-table .check {
    color: var(--accent);
    font-size: 18px;
}

.comparison-table .cross {
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0.5;
}

/* ============================================
   CUSTOM DEVELOPMENT SECTION
   ============================================ */
.custom-dev {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.custom-dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.custom-dev-main {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.custom-dev-main::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.custom-dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 24px;
}

.custom-dev-main h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.custom-dev-main p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.custom-dev-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.custom-dev-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.custom-dev-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 16px;
}

.custom-dev-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.custom-dev-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.custom-dev-card p strong {
    color: var(--accent);
}

.custom-dev-process {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.custom-dev-process h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.process-number {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.process-content h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.process-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.process-arrow {
    color: var(--text-muted);
    font-size: 20px;
    padding: 0 10px;
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.15;
    text-align: center;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.footer-socials a:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

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

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    nav {
        padding: 16px 32px;
    }
}

/* Laptop / Large Tablet */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero {
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .float-card {
        display: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-text {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }

}

/* Tablet */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .preview-content {
        grid-template-columns: 1fr;
    }

    .preview-leftbar {
        display: none;
    }
    
    .preview-sidebar {
        display: none;
    }
    
    .custom-dev-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-dev-main {
        grid-row: auto;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        padding: 5px 0;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    /* NAV - Logo and CTA on same line */
    nav {
        padding: 12px 16px;
        flex-wrap: nowrap;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-cta {
        display: flex;
        gap: 8px;
    }
    
    .nav-cta .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stat {
        text-align: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-title {
        font-size: 36px;
    }

    .feature-title {
        font-size: 28px;
    }
    
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .comparison-table-wrapper {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .comparison-table th.feature-column,
    .comparison-table td.feature-column {
        min-width: 140px;
        font-size: 11px;
        position: sticky;
        left: 0;
        background: var(--bg-card);
        z-index: 1;
    }
    
    .comparison-table th.feature-column {
        background: var(--bg-elevated);
        z-index: 2;
    }
    
    .comparison-table td.feature-column i {
        display: none;
    }
    
    .feature-visual {
        padding: 20px;
    }
    
    .dialpad-key {
        width: 48px;
        height: 48px;
    }
    
    .custom-dev-main {
        padding: 32px 24px;
    }
    
    .custom-dev-process {
        padding: 24px;
    }
    
    .ticket-item {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    
    .ticket-status {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .hero::before,
    .cta::before {
        display: none;
    }
}

/* Mobile Medium */
@media (max-width: 640px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    nav {
        padding: 10px 14px;
    }
    
    .nav-cta .btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }

    .module-card {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }

    .preview-header {
        padding: 12px 14px;
    }

    .preview-tabs {
        display: none;
    }

    .preview-main {
        padding: 16px;
    }
    
    .crm-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .campaign-stat-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 8px;
        font-size: 10px;
    }
    
    .comparison-table th.feature-column,
    .comparison-table td.feature-column {
        min-width: 120px;
        font-size: 10px;
        padding: 8px 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    nav {
        padding: 10px 12px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .nav-cta .btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .hero h1 {
        font-size: 26px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 10px 6px 6px;
    }
    
    .hero-badge .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .hero-cta {
        max-width: 100%;
    }
    
    .hero-stats {
        max-width: 100%;
    }

    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }

    .module-card {
        padding: 20px;
    }
    
    .module-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .module-title {
        font-size: 18px;
    }

    .feature-title {
        font-size: 24px;
    }
    
    .feature-visual {
        padding: 16px;
        min-height: 300px;
    }

    .cta-title {
        font-size: 26px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .custom-dev-main h3 {
        font-size: 22px;
    }
    
    .custom-dev-main p {
        font-size: 14px;
    }
    
    .custom-dev-card {
        padding: 20px;
    }
    
    footer {
        padding: 60px 0 32px;
    }
    
    .footer-grid {
        gap: 24px;
    }
    
    .dialpad-keys {
        gap: 8px;
    }
    
    .dialpad-key {
        width: 44px;
        height: 44px;
    }
    
    .dialpad-key-num {
        font-size: 18px;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .pricing-amount {
        font-size: 32px;
    }
    
    .nav-cta .btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-img {
        height: 24px;
    }
}

/* Landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

/* Block horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

* {
    max-width: 100vw;
}

.hero,
.container,
section {
    overflow-x: clip;
}

/* Print styles */
@media print {
    .grid-bg,
    nav,
    .float-card {
        display: none;
    }
    
    .hero {
        padding-top: 40px;
    }
}
/* CRM Feature - większy kontener i obrazek */
.feature-row:last-child .feature-visual {
    padding: 0;
    background: transparent;
    border: none;
    min-height: auto;
    overflow: visible;
}

.customer-screenshot {
    width: calc(100% + 28vw);
    margin-left: calc(-3vw);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

@media (max-width: 1100px) {
    .customer-screenshot {
        width: 100%;
        margin-left: 0;
    }
}
/* Campaign screenshot */
.campaign-screenshot {
    width: calc(100% + 38vw);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

@media (max-width: 1100px) {
    .campaign-screenshot {
        width: 100%;
        margin-left: 0;
    }
}

/* Usuń tło dla campaign i customer kontenerów */
.feature-row.reverse .feature-visual,
.feature-row:last-child .feature-visual {
    padding: 0;
    background: transparent;
    border: none;
    min-height: auto;
    overflow: visible;
}
.campaign-screenshot,
.customer-screenshot {
    max-width: none;
}

.feature-row.reverse .feature-visual,
.feature-row:last-child .feature-visual {
    padding: 0;
    background: transparent;
    border: none;
    min-height: auto;
    overflow: visible;
    max-width: none;
}
/* Dialpad - stały rozmiar na wszystkich urządzeniach */
.dialpad-screen {
    max-width: 280px;
    margin: 0 auto;
}

.dialpad-keys {
    gap: 12px !important;
}

.dialpad-key {
    width: 66px !important;
    height: 66px !important;
}

.dialpad-key-num {
    font-size: 20px !important;
}

.dialpad-call-btn {
    width: 64px !important;
    height: 64px !important;
}
/* Pricing Grid 5 columns */
.pricing-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 64px;
    margin-bottom: 80px;
}

.pricing-grid-5 .pricing-card {
    padding: 28px 20px;
}

.pricing-grid-5 .pricing-amount {
    font-size: clamp(28px, 4vw, 36px);
}

@media (max-width: 1200px) {
    .pricing-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* Wider comparison table for 6 columns */
.comparison-table {
    min-width: 900px;
}