/* GLOBAL STYLES & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #FFFEFB;
    --bg-dark-secondary: #FFFEFB;
    --bg-card: #FFFEFB;
    --primary-color: #E8590C;
    --primary-dark: #C74B0A;
    --primary-light: #81d4fa;
    --secondary-color: #14b8a6;
    --text-light: #1a1a2e;
    --text-secondary: #6b7280;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #FFFEFB;
    --border-light: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
    --border-radius-pill: 50px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-light);
    background-color: #FFFEFB;
    background-image: radial-gradient(circle, #e0e2e6 0.8px, transparent 0.8px);
    background-size: 32px 32px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFEFB;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: #1a1a2e;
    margin-left: 6px;
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border: none;
    border-radius: 0;
    transition: var(--transition);
}

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

.nav-links .nav-cta {
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links .nav-cta:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 8px;
    transition: transform 0.3s ease;
}

/* Desktop only */
@media (hover: hover) and (min-width: 769px) {
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFEFB;
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    list-style: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* Desktop only - hover to show dropdown (not on touch devices) */
@media (hover: hover) and (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
}

.dropdown-menu li {
    width: 100%;
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 14px;
    border: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(232, 89, 12, 0.08);
    color: var(--primary-color);
    padding-left: 24px;
}

.dropdown-category-group {
    list-style: none;
}

.dropdown-category-group:not(:first-child) {
    border-top: 1px solid #e5e7eb;
}

.dropdown-category-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 20px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.2s ease;
}

.dropdown-category-toggle:hover {
    background: rgba(232, 89, 12, 0.05);
}

.dropdown-category-toggle .cat-arrow {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.dropdown-category-group.active .dropdown-category-toggle .cat-arrow {
    transform: rotate(180deg);
}

.dropdown-category-items {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
}

.dropdown-category-group.active .dropdown-category-items {
    max-height: 200px;
}

/* Nested Dropdown Styles */
.dropdown.nested {
    position: relative;
}

.nested-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.nested-toggle::after {
    content: '▼';
    font-size: 8px;
    margin-left: 10px;
    transition: none;
}

.dropdown.nested.active .nested-toggle::after {
    content: '▲';
}

.nested-menu {
    position: static;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-left: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    display: block;
    background: rgba(232, 89, 12, 0.05);
    border-radius: 8px;
    box-shadow: none;
    padding: 0;
}

.nested-menu::before {
    display: none;
}

/* Show nested menu when active (click-based for both desktop and mobile) */
.dropdown.nested.active > .nested-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 0;
    margin-top: 4px;
}

.nested-menu a {
    padding-left: 32px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.hamburger:hover span,
.hamburger:active span {
    background: var(--primary-color);
}

/* HERO SECTION */
.hero {
    padding: 120px 40px 0;
    background: #FFFEFB;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    align-items: center;
}

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

.hero-content {
    max-width: 100%;
    transition: transform 0.1s ease-out;
    text-align: left;
}

.hero-headline {
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 0;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

.hero-subheadline {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 16px;
    margin-top: 2px;
    line-height: 1.7;
    max-width: 640px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-trust {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: #E8590C;
    border: 1px solid #E8590C;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(232, 89, 12, 0.05);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

/* HERO VISUAL - MOCK WEBSITE */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    perspective: 1000px;
}

.mock-website {
    width: 100%;
    max-width: 500px;
    background: #000000;
    border-radius: 16px;
    border: 1px solid #333333;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    position: relative;
}

.mock-header {
    background: #000000;
    padding: 14px 18px;
    border-bottom: 1px solid #222222;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mock-dots {
    display: flex;
    gap: 8px;
}

.mock-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #10b981; }

.mock-tabs {
    display: flex;
    gap: 8px;
    flex: 1;
    position: relative;
}

.mock-tab {
    min-width: 70px;
    height: 32px;
    background: #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    border: 1px solid transparent;
}

.mock-tab.active {
    background: #E8590C;
    border: 1px solid #E8590C;
    color: #ffffff;
}

.tab-indicator {
    position: absolute;
    bottom: -14px;
    height: 2px;
    background: #E8590C;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 70px;
    left: 0;
}

.mock-cursor {
    position: absolute;
    width: 20px;
    height: 24px;
    pointer-events: none;
    z-index: 100;
    opacity: 1;
    top: 18px;
    left: 105px;
    transition: left 0.8s ease-in-out;
}

.mock-cursor::before {
    content: '➤';
    position: absolute;
    font-size: 20px;
    color: #ffffff;
    transform: rotate(-45deg);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.mock-cursor.clicking::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    top: -5px;
    left: -5px;
    animation: clickRipple 0.5s ease-out;
}

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

@keyframes cursorMove {
    0%, 5% {
        top: 18px;
        left: 105px;
        opacity: 1;
    }
    33%, 38% {
        top: 18px;
        left: 179px;
        opacity: 1;
    }
    66%, 71% {
        top: 18px;
        left: 253px;
        opacity: 1;
    }
    95%, 100% {
        top: 18px;
        left: 105px;
        opacity: 1;
    }
}

.mock-content {
    display: flex;
    min-height: 300px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.mock-content::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 120px;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(79, 195, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.mock-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 40px,
        rgba(79, 195, 247, 0.05) 40px,
        rgba(79, 195, 247, 0.05) 41px
    );
    mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    pointer-events: none;
}

.mock-decor {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    color: rgba(79, 195, 247, 0.2);
    font-family: monospace;
    z-index: 1;
}

.mock-decor-tl {
    top: 15px;
    left: 15px;
}


.mock-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mock-sidebar {
    display: none;
}

.mock-main {
    flex: 1;
    padding: 28px;
    position: relative;
    background: transparent;
    z-index: 2;
}

.mock-page {
    display: none;
    animation: fadeInContent 0.4s ease-in-out;
}

.mock-page.active {
    display: block;
}

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

.mock-bar {
    height: 12px;
    background: linear-gradient(90deg, #2a2a2a 0%, #333333 100%);
    border-radius: 6px;
    margin-bottom: 16px;
}

.mock-bar.short {
    width: 60%;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.mock-step {
    text-align: center;
    padding: 20px 10px;
}

.mock-step-number {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #E8590C;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.mock-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.mock-step-desc {
    font-size: 12px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

/* BENEFITS SECTION */
.benefits {
    padding: 100px 40px;
    background: #FFFEFB;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-tabs {
    padding: 80px 40px;
    background: #FFFEFB;
    position: relative;
}

.services-tabs-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a2e;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E8590C;
    display: inline-block;
}

.services-tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.services-tab-btn {
    padding: 12px 22px;
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.services-tab-btn:hover {
    color: #1a1a2e;
    border-color: #E8590C;
}

.services-tab-btn.active {
    color: #fff;
    font-weight: 600;
    background: #E8590C;
    border-color: #E8590C;
}

.services-tab-panels {
    max-width: 1100px;
    margin: 0 auto;
}

.services-tab-panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.services-tab-panel.active {
    display: block;
}

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

.tab-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-panel-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.tab-panel-text p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.tab-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-features li {
    font-size: 15px;
    color: #1a1a2e;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.tab-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E8590C;
    font-weight: 700;
}

.tab-visual-mockup {
    background: #0a0a0b;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.mockup-url {
    font-size: 11px;
    color: #666;
    margin-left: auto;
    background: #1c1c24;
    padding: 3px 12px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

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

.anim-item {
    opacity: 0;
    animation: mockupSlideUp 0.5s ease forwards;
}

.services-tab-panel.active .anim-item {
    opacity: 0;
    animation: mockupSlideUp 0.5s ease forwards;
}

@keyframes chatSlideIn {
    from { opacity: 0; transform: translateX(-20px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.anim-chat {
    opacity: 0;
    animation: chatSlideIn 0.4s ease forwards;
}

.services-tab-panel.active .anim-chat {
    opacity: 0;
    animation: chatSlideIn 0.4s ease forwards;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--bar-h); }
}

.anim-bar {
    height: 0;
    animation: barGrow 0.8s ease forwards;
    animation-delay: 0.3s;
}

.services-tab-panel.active .anim-bar {
    height: 0;
    animation: barGrow 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.anim-pulse {
    animation: pulseArrow 2s ease infinite;
}

@keyframes blinkDot {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

.anim-blink {
    animation: blinkDot 3s ease infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.anim-spin-slow {
    animation: spinSlow 12s linear infinite;
}

.mockup-code-editor {
    padding: 0 !important;
    gap: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.code-editor-sidebar {
    display: flex;
    gap: 2px;
    padding: 8px 12px;
    background: #12121a;
    border-bottom: 1px solid #1c1c24;
}

.code-file {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    color: #666;
    font-size: 10px;
    border-radius: 4px 4px 0 0;
    cursor: default;
}

.code-file.active {
    background: #1c1c24;
    color: #e0e0e0;
}

.code-file-icon {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    display: inline-block;
}

.html-icon { background: #e44d26; }
.css-icon { background: #264de4; }
.js-icon { background: #f7df1e; }
.img-icon { background: #10b981; }

.code-editor-main {
    flex: 1;
    padding: 10px 0;
    overflow: hidden;
}

.code-line {
    display: flex;
    align-items: center;
    padding: 1px 12px;
    line-height: 1.7;
    white-space: nowrap;
}

.code-line.highlight-line {
    background: rgba(232, 89, 12, 0.08);
    border-left: 2px solid #E8590C;
}

.code-ln {
    width: 24px;
    color: #444;
    text-align: right;
    margin-right: 12px;
    font-size: 9px;
    flex-shrink: 0;
    user-select: none;
}

.code-tag { color: #e44d26; }
.code-attr { color: #9cdcfe; }
.code-str { color: #ce9178; }
.code-text { color: #d4d4d4; }
.code-comment { color: #6a9955; font-style: italic; }

.code-editor-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 12px;
    background: #1a1a2e;
    border-top: 1px solid #1c1c24;
    font-size: 9px;
    color: #888;
}

.code-status-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.code-status-right {
    display: flex;
    gap: 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.green-dot {
    background: #10b981;
    box-shadow: 0 0 4px #10b981;
}

.mockup-app {
    padding: 20px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}

.mock-stats-row {
    display: flex;
    gap: 12px;
}

.mock-stat {
    flex: 1;
    background: #1c1c24;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.mock-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #E8590C;
}

.mock-stat-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 8px;
}

.mock-chart-bar {
    flex: 1;
    background: linear-gradient(to top, #E8590C, #f59e0b);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
}

.mock-keywords {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-keyword {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 6px;
    font-size: 12px;
    color: #c4c9d4;
}

.mock-kw-rank {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
}

.mock-agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 8px;
    font-size: 13px;
    color: #c4c9d4;
    font-weight: 600;
}

.mock-agent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: blinkDot 3s ease infinite;
}

.mock-agent-badge {
    margin-left: auto;
    font-size: 10px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.mock-chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
    max-width: 85%;
}

.mock-chat-bubble.incoming {
    background: #1c1c24;
    color: #c4c9d4;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.mock-chat-bubble.outgoing {
    background: #E8590C;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mock-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #1c1c24;
    border-radius: 8px;
    font-size: 12px;
    color: #555;
}

/* Voicement AI Receptionist Mockup */
.voicement-mockup {
    border: 1px solid rgba(232, 89, 12, 0.3);
}
.voicement-bar {
    background: linear-gradient(90deg, rgba(232, 89, 12, 0.15), rgba(255, 140, 50, 0.15));
}
.voicement-url {
    color: #E8590C;
}
.voicement-phone-body {
    background: #0a0a0b;
    gap: 10px;
}
.voicement-phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #0a0a0b;
    border-radius: 10px;
    border: 1px solid #E8590C;
}
.voicement-phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8590C, #ff8c32);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voicement-phone-avatar svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.voicement-phone-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.voicement-phone-label {
    font-size: 13px;
    font-weight: 700;
    color: #f5f7fa;
}
.voicement-phone-status {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}
.voicement-phone-timer {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: #E8590C;
    font-variant-numeric: tabular-nums;
}
.voicement-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 40px;
    padding: 0 20px;
}
.wave-bar {
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #E8590C, #ff8c32);
    animation: waveAnim 1.8s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}
@keyframes waveAnim {
    0% { height: 6px; }
    25% { height: 22px; }
    50% { height: 10px; }
    75% { height: 28px; }
    100% { height: 14px; }
}
.voicement-transcript {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: #1c1c24;
    border-radius: 10px;
    flex: 1;
    overflow: hidden;
}
.voicement-transcript-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E8590C;
    font-weight: 700;
    margin-bottom: 2px;
}
.voicement-transcript-line {
    font-size: 11px;
    line-height: 1.5;
    color: #c4c9d4;
    padding: 6px 10px;
    border-radius: 8px;
}
.voicement-transcript-line.caller {
    background: rgba(255, 255, 255, 0.04);
}
.voicement-transcript-line.ai {
    background: rgba(232, 89, 12, 0.08);
    border-left: 2px solid #E8590C;
}
.transcript-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #888;
}
.transcript-tag.ai-tag {
    background: linear-gradient(135deg, rgba(232, 89, 12, 0.2), rgba(255, 140, 50, 0.2));
    color: #E8590C;
}
.voicement-actions {
    display: flex;
    gap: 8px;
}
.voicement-action-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}
.action-icon {
    font-size: 13px;
}

.mock-wf-label {
    font-size: 11px;
    color: #E8590C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-wf-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-wf-node {
    padding: 8px 14px;
    background: #1c1c24;
    border: 1px solid #2a2a35;
    border-radius: 8px;
    font-size: 11px;
    color: #c4c9d4;
    white-space: nowrap;
}

.mock-wf-node.trigger {
    border-color: #E8590C;
    color: #E8590C;
}

.mock-wf-node.action {
    border-color: #10b981;
    color: #10b981;
}

.mock-wf-arrow {
    color: #555;
    font-size: 14px;
    flex-shrink: 0;
}

.mock-wf-stats {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #1c1c24;
}

.mock-platforms {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: flex-start;
    align-items: center;
}

.mock-platform-icon {
    width: 36px;
    height: 36px;
    background: #1c1c24;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.mock-platform-icon:hover {
    border-color: #E8590C;
    transform: translateY(-2px);
}

.mock-platform-icon img, 
.mock-platform-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mock-calendar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-cal-post {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 6px;
    font-size: 12px;
    color: #c4c9d4;
}

.mock-cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-metrics {
    display: flex;
    gap: 12px;
}

.mock-metric {
    flex: 1;
    background: #1c1c24;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-monitor-header {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    padding: 8px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.mock-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c4c9d4;
    font-size: 14px;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 8px;
}

.mock-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-status-value {
    margin-left: auto;
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
}

.mock-update-log {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #1c1c24;
}

.mock-brand-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    background: #1c1c24;
    border-radius: 8px;
}

.mock-brand-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8590C, #f59e0b);
    flex-shrink: 0;
}

.mock-brand-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-brand-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mock-brand-colors {
    display: flex;
    gap: 8px;
}

.mock-brand-swatch {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: transform 0.2s;
}

.mock-brand-swatch:hover {
    transform: scale(1.15);
}

.mock-brand-type {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    background: #1c1c24;
    border-radius: 8px;
}

.mock-brand-assets {
    display: flex;
    gap: 8px;
}

.mock-brand-asset {
    flex: 1;
    height: 50px;
    background: #1c1c24;
    border-radius: 8px;
    border: 1px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-stats-row {
    display: flex;
    gap: 12px;
}

.seo-stat {
    flex: 1;
    background: #1c1c24;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.seo-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #E8590C;
}

.seo-stat-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-keywords {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.seo-keyword {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 6px;
    font-size: 12px;
    color: #c4c9d4;
}

.kw-rank {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
}

.chat-input-mock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #1c1c24;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: #555;
}

.chat-send-btn {
    width: 28px;
    height: 28px;
    background: #E8590C;
    border-radius: 50%;
}

.wf-label {
    font-size: 11px;
    color: #E8590C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    margin-top: 8px;
}

.wf-label:first-child {
    margin-top: 0;
}

.workflow-node.wf-trigger {
    border-color: #E8590C;
    color: #E8590C;
}

.workflow-node.wf-action {
    border-color: #10b981;
    color: #10b981;
}

.wf-stats {
    display: flex;
    gap: 16px;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid #1c1c24;
}

.wf-stat {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wf-stat-num {
    font-size: 16px;
    font-weight: 800;
    color: #E8590C;
}

.social-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 4px 12px;
    background: #1c1c24;
    border-radius: 20px;
    font-size: 11px;
    color: #c4c9d4;
    border: 1px solid #2a2a35;
}

.social-calendar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cal-post {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 6px;
    font-size: 12px;
    color: #c4c9d4;
}

.cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cal-post.scheduled .cal-dot {
    background: #10b981;
}

.cal-post.draft .cal-dot {
    background: #f59e0b;
}

.social-metrics {
    display: flex;
    gap: 12px;
}

.social-metric {
    flex: 1;
    background: #1c1c24;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-num {
    font-size: 18px;
    font-weight: 800;
    color: #E8590C;
}

.metric-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
}

.monitor-header {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    padding: 8px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 8px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c4c9d4;
    font-size: 14px;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 8px;
}

.status-value {
    margin-left: auto;
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
}

.monitor-updates {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #1c1c24;
}

.update-log {
    font-size: 11px;
    color: #555;
    padding: 4px 8px;
}

.update-log::before {
    content: '>';
    color: #E8590C;
    margin-right: 8px;
    font-weight: 700;
}

.brand-logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    background: #1c1c24;
    border-radius: 8px;
}

.brand-name-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-section-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.brand-swatch {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    transition: transform 0.2s;
}

.brand-swatch:hover {
    transform: scale(1.15);
}

.brand-type-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    background: #1c1c24;
    border-radius: 8px;
}

.type-heading {
    font-size: 28px;
    font-weight: 800;
    color: #E8590C;
}

.type-body {
    font-size: 13px;
    color: #c4c9d4;
}

.brand-assets {
    display: flex;
    gap: 8px;
}

.brand-asset {
    flex: 1;
    height: 50px;
    background: #1c1c24;
    border-radius: 8px;
    border: 1px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #1c1c24;
    border-radius: 6px;
    margin-top: 4px;
}

.web-footer-links {
    display: flex;
    gap: 8px;
}

.web-footer-links span {
    width: 28px;
    height: 6px;
    background: #2a2a35;
    border-radius: 3px;
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 4px;
}

.agent-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: blinkDot 2s ease infinite;
}

.agent-badge {
    margin-left: auto;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.platform-badge.active-badge {
    background: rgba(232, 89, 12, 0.15);
    border-color: rgba(232, 89, 12, 0.3);
    color: #E8590C;
}

.brand-type-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-body-small {
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
}

.asset-label {
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-mockup-bar {
    padding: 12px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #222;
}

.tab-mockup-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tab-mockup-bar .dot.red { background: #ef4444; }
.tab-mockup-bar .dot.yellow { background: #f59e0b; }
.tab-mockup-bar .dot.green { background: #10b981; }

.tab-mockup-body {
    padding: 24px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.mockup-line {
    height: 10px;
    background: #1c1c24;
    border-radius: 5px;
}

.mockup-line.w80 { width: 80%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w50 { width: 50%; }
.mockup-line.w40 { width: 40%; }

.mockup-block-row {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.mockup-block {
    flex: 1;
    height: 80px;
    background: #1c1c24;
    border-radius: 8px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
    padding-bottom: 8px;
}

.chart-bar {
    flex: 1;
    background: #1c1c24;
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}

.chart-bar.highlight {
    background: #E8590C;
}

.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    max-width: 80%;
    line-height: 1.4;
}

.chat-bubble.incoming {
    background: #1c1c24;
    color: #c4c9d4;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background: #E8590C;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mockup-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.workflow-node {
    padding: 12px 20px;
    background: #1c1c24;
    border: 1px solid #333;
    border-radius: 8px;
    color: #c4c9d4;
    font-size: 13px;
    font-weight: 600;
}

.workflow-node.small {
    padding: 8px 14px;
    font-size: 12px;
}

.workflow-arrow {
    color: #E8590C;
    font-size: 20px;
    font-weight: 700;
}

.mockup-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-post {
    width: 100%;
    height: 120px;
    background: #1c1c24;
    border-radius: 8px;
}

.social-stats {
    display: flex;
    gap: 24px;
    color: #c4c9d4;
    font-size: 14px;
}

.mockup-status {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.green-dot {
    background: #10b981;
}

.mockup-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.brand-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #E8590C;
}

.brand-colors {
    display: flex;
    gap: 12px;
}

.brand-colors span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}


.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

/* AI STATS SECTION */
.ai-stats {
    background: #1c1c1e;
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.ai-stats .container {
    max-width: 900px;
}

.ai-stats-number {
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
}

.roll-digit {
    display: inline-block;
    height: 1.1em;
    overflow: hidden;
    position: relative;
}

.roll-digit-inner {
    display: flex;
    flex-direction: column;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.roll-digit-inner span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
    background: linear-gradient(180deg, #ffffff 40%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roll-static {
    display: inline-block;
    height: 1.1em;
    line-height: 1.1em;
    background: linear-gradient(180deg, #ffffff 40%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-stats-subtitle {
    font-size: 18px;
    color: #e07840;
    margin-bottom: 32px;
    font-weight: 500;
}

.ai-stats-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
}

.ai-stats-chart {
    background: #111113;
    border-radius: 16px 0 0 0;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-chart-svg {
    width: 100%;
    max-width: 360px;
}

.chart-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2.5s ease-out forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.chart-dot {
    opacity: 0;
    animation: dotAppear 0.3s ease-out 1.8s forwards;
}

@keyframes dotAppear {
    to { opacity: 1; }
}

.ai-stats-desc {
    background: #111113;
    border-radius: 0 16px 0 0;
    padding: 40px 36px;
    display: flex;
    align-items: center;
}

.ai-stats-desc p {
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: left;
    font-weight: 500;
}

.ai-stats-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.ai-stats-feature {
    background: #111113;
    padding: 36px 30px;
    text-align: left;
}

.ai-stats-feature:nth-child(3) {
    border-radius: 0 0 0 16px;
}

.ai-stats-feature:nth-child(4) {
    border-radius: 0 0 16px 0;
}

.ai-stats-icon {
    display: block;
    font-size: 20px;
    margin-bottom: 16px;
    color: #888;
}

.ai-stats-feature p {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ai-stats {
        padding: 60px 20px;
    }
    .ai-stats-number {
        font-size: 56px;
        letter-spacing: -2px;
        gap: 0;
    }
    .ai-stats-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .ai-stats-grid-top {
        grid-template-columns: 1fr;
    }
    .ai-stats-chart {
        border-radius: 16px 16px 0 0;
    }
    .ai-stats-desc {
        border-radius: 0;
    }
    .ai-stats-features {
        grid-template-columns: 1fr;
    }
    .ai-stats-feature:nth-child(3) {
        border-radius: 0;
    }
    .ai-stats-feature:nth-child(4) {
        border-radius: 0 0 16px 16px;
    }
    .ai-stats-desc p {
        font-size: 17px;
    }
}

/* CUSTOM SOFTWARE SECTION */
.custom-software {
    padding: 100px 40px;
    background: #FFFEFB;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-software .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* SHARED SECTION LABEL & HEADING STYLES (Zapier-inspired) */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.label-icon {
    width: 14px;
    height: 10px;
    background: #E8590C;
    border-radius: 2px;
    display: inline-block;
}

.section-heading-lg {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
    text-align: center;
}

.section-subtitle-lg {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 auto 16px;
    max-width: 600px;
    text-align: center;
}

/* CUSTOM SOFTWARE / BEYOND MARKETING */
.custom-software {
    padding: 120px 40px;
    background: #FFFEFB;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
}

.software-card {
    padding: 40px 36px;
    background: #FFFEFB;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.software-card:nth-child(3n) {
    border-right: none;
}

.software-card:nth-child(n+4) {
    border-bottom: none;
}

.software-card:hover {
    background: #f9f5f2;
}

.software-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.35;
}

.software-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.software-cta-text {
    margin-top: 40px;
    font-size: 15px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* HOW IT WORKS / OUR PROCESS SECTION */
.how-it-works {
    padding: 120px 40px;
    background: #FFFEFB;
    position: relative;
}

.how-it-works .container {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
}

.process-card {
    padding: 48px 36px;
    background: #FFFEFB;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.process-card:last-child {
    border-right: none;
}

.process-card:hover {
    background: #f9f5f2;
}

.process-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E8590C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.process-step-number {
    font-size: 48px;
    font-weight: 800;
    color: #E8590C;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -8px;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.process-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.process-checklist {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-checklist li {
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-checklist li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #E8590C;
    border-radius: 50%;
    flex-shrink: 0;
}


/* PRICING SECTION */
.pricing {
    padding: 80px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 40px rgba(232, 89, 12, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.plan-price {
    margin-bottom: 0;
}

.price {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--medium-gray);
    font-weight: 500;
}

.setup-fee {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0 0 16px;
    padding: 0;
    font-weight: 500;
    line-height: 1.4;
}

.plan-description {
    color: var(--dark-gray);
    margin-top: 0;
    margin-bottom: 20px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 0;
    background: var(--bg-dark-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 14px;
}

/* VOICEMENT SECTION */
.voicement-section {
    padding: 120px 40px;
    background: #FFFEFB;
    text-align: center;
}

.voicement-header {
    max-width: 800px;
    margin: 0 auto 0;
}

.voicement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFEFB;
    border: 1px solid #e5e2db;
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.voicement-badge-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
}

.voicement-gradient-text {
    background: linear-gradient(90deg, #e84393, #a855f7, #E8590C, #e84393); background-size: 200% auto; animation: voicementGradient 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voicement-cta-btn {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 16px 40px;
    background: linear-gradient(90deg, #e84393, #a855f7, #E8590C, #e84393); background-size: 200% auto; animation: voicementGradient 3s linear infinite;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.voicement-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

.voicement-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 60px;
}

.voicement-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.voicement-stats-bar {
    max-width: 600px;
    margin: 0 auto 60px;
}

.voicement-stat-highlight {
    background: #FFFEFB;
    border: 1px solid #e5e2db;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.voicement-stat-number {
    font-size: clamp(56px, 6vw, 80px);
    font-weight: 800;
    color: #E8590C;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}

.voicement-stat-highlight p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.voicement-stat-emphasis {
    font-weight: 700;
    color: #1a1a1a !important;
    margin-top: 8px !important;
}

.voicement-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.voicement-feature-card {
    background: #FFFEFB;
    border: 1px solid #e5e2db;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.voicement-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.voicement-feature-icon {
    width: 44px;
    height: 44px;
    background: #FFF3ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.voicement-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.voicement-feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .voicement-section {
        padding: 80px 20px;
    }

    .voicement-features-grid {
        grid-template-columns: 1fr;
    }

    .voicement-highlights {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .voicement-stat-highlight {
        padding: 28px 20px;
    }
}

/* FAQ SECTION */
.faq {
    padding: 120px 40px;
    background: #FFFEFB;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    background: #FFFEFB;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    padding: 0 36px;
}

/* Active nav link when on section */
.nav-links a.active {
    color: #E8590C;
}

/* CONTACT SECTION */
.contact {
    padding: 120px 40px;
    background: #FFFEFB;
    position: relative;
}

.contact .section-heading-lg {
    margin-bottom: 48px;
}

.contact-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: #FFFEFB;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 48px 48px;
    position: relative;
    z-index: 1;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
    position: relative;
}

.char-counter {
    font-size: 13px;
    color: #9ca3af;
    text-align: right;
    margin-top: 4px;
    font-weight: 500;
}

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: #FFFEFB;
    color: #1a1a2e;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input.pulse-animate,
.form-group textarea.pulse-animate {
    animation: inputPulse 1s ease-out forwards;
}

@keyframes inputPulse {
    0% {
        transform: scale(1);
        box-shadow: none;
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(232, 89, 12, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    margin-top: 0;
}

.contact-alternative {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

.contact-alternative a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* Verified With Section */
.verified-section {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-carousel {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw;
    overflow: hidden;
    padding: 24px 0 40px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 120px;
    animation: carouselScroll 60s linear infinite;
    width: max-content;
}

.logo-carousel-item {
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 58px;
}

.logo-carousel-item:hover {
    opacity: 0.8;
}

.logo-carousel-item svg {
    width: 28px;
    height: 28px;
}

.logo-carousel-item.logo-icon-size svg {
    width: 36px;
    height: 36px;
}

.logo-carousel-item img {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.logo-carousel-item.logo-icon-size img {
    height: 40px;
}

.logo-label {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
    font-weight: 500;
}

.carousel-heading {
    text-align: center;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
    margin-top: auto;
    padding-top: 40px;
    font-weight: 500;
    position: relative;
    width: 100%;
}

.carousel-subheading {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
    margin: 0;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* FOOTER */
.footer {
    background: #1a1a2e;
    padding: 60px 0 0;
    color: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

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

.success-message {
    display: none;
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin-top: 32px;
}

.success-message.show {
    display: block;
    animation: slideIn 0.4s ease;
}

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

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    .voicement-header {
    max-width: 800px;
    margin: 0 auto 0;
}

.voicement-header .section-subtitle-lg {
    margin-bottom: 24px;
}

.hidden_class_to_not_match_again 
}

.success-content h3 {
    color: var(--dark-gray);
    font-size: 24px;
    margin-bottom: 8px;
}

.success-content p {
    color: var(--medium-gray);
}

/* BOTTOM TAGLINE BAR */
.tagline-bar {
    background: var(--white);
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
}

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

.tagline-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
}


/* STICKY MOBILE CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFEFB;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideUp 0.3s ease;
    border-top: 1px solid #e5e7eb;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta .btn {
    width: 100%;
    display: block;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero {
        padding: 140px 30px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .hero-subheadline {
        font-size: 15px;
    }
    
    .mock-website {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 0;
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .services-tabs,
    .how-it-works,
    .faq,
    .contact {
        padding: 70px 20px;
    }

    .services-tab-nav {
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .services-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .tab-panel-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tab-panel-text h3 {
        font-size: 22px;
    }

    .tab-panel-text p {
        font-size: 15px;
    }

    .tab-features li {
        font-size: 14px;
    }

    .mockup-app {
        min-height: 260px;
        padding: 16px;
    }

    .mock-stat-value {
        font-size: 16px;
    }

    .mock-stats-row {
        gap: 8px;
    }

    .mock-stat {
        padding: 10px 8px;
    }

    .voicement-actions {
        flex-wrap: wrap;
    }

    .mock-wf-row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .mock-wf-node {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    
    .logo {
        white-space: nowrap;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .logo-sub {
        font-size: clamp(12px, 4vw, 20px);
    }
    
    /* Hero mobile fixes */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .hero-content {
        order: 1;
        align-items: center;
        width: 100%;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .computer-mockup {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .logo-carousel {
        padding: 16px 0;
    }
    
    .logo-carousel-track {
        gap: 80px;
    }
    
    .logo-carousel-item svg {
        width: 24px;
        height: 24px;
    }
    
    .logo-carousel-item img {
        height: 24px;
    }
    
    /* Custom Software mobile */
    .custom-software,
    .how-it-works,
    .faq,
    .contact {
        padding: 60px 20px;
    }
    
    .section-heading-lg {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .section-subtitle-lg {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .software-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .software-card:last-child {
        border-bottom: none;
    }
    
    .software-card:nth-child(n+4) {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .software-card:nth-child(3n) {
        border-right: none;
    }
    
    .software-card h3 {
        font-size: 16px;
    }
    
    .software-card p {
        font-size: 13px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .process-card:last-child {
        border-bottom: none;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px;
    }
    
    .contact-content {
        padding: 28px 24px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile */
    .footer {
        padding: 32px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 20px 24px;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-logo-link {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
        font-size: 13px;
    }
    
    .footer-links-col {
        text-align: left;
    }

    .footer-links-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-links-col ul li a {
        font-size: 13px;
    }

    .footer-links-col ul li {
        margin-bottom: 6px;
    }

    .footer-links-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-cta-text {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 8px;
    }
    
    .footer-cta-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 28px;
        text-align: center;
    }
    
    
    
    .benefits-intro {
        font-size: 14px;
        text-align: center;
    }
    
    /* Trust bar mobile */
    .trust-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .trust-label {
        width: 100%;
        text-align: center;
    }
    
    .trust-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* FAQ mobile */
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Contact form mobile */
    .contact-content {
        padding: 24px;
        max-width: 100%;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .contact-subheading {
        font-size: 14px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #FFFEFB;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        gap: 0;
        border-left: 1px solid #e5e7eb;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        width: 100%;
        border: none;
        border-radius: 0;
        color: #1a1a2e;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        background: transparent;
        color: var(--primary-color);
        border-color: transparent;
    }

    .nav-links .nav-cta {
        margin-top: 0;
        text-align: center;
        border-radius: var(--border-radius-pill);
        border: 1px solid var(--primary-color);
    }

    /* Main dropdown mobile - click to toggle */
    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(232, 89, 12, 0.05);
        border-radius: 8px;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
    }

    .dropdown.active > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 8px 0;
        margin-top: 8px;
    }

    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .dropdown.active > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 14px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .dropdown-menu a:hover {
        padding-left: 20px;
    }

    /* Nested dropdown mobile styles - adjust touch targets */
    .dropdown.nested {
        width: 100%;
    }

    .nested-toggle {
        min-height: 44px;
    }

    .nested-menu a {
        padding: 14px 16px 14px 32px !important;
        min-height: 44px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .hero-cta .btn {
        width: auto;
    }

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

    .process-wrapper {
        padding: 40px 24px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        border-radius: 0 !important;
    }

    .step:first-child,
    .step:last-child {
        border-radius: 0 !important;
    }

    .step-connector {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        flex-direction: column;
    }

    .benefit-card {
        flex-direction: column;
    }

    .benefit-icon {
        width: 100%;
        min-width: 100%;
        height: 60px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
    }

    .sticky-cta {
        display: none;
    }
    
    .sticky-cta.visible {
        display: block;
    }

}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .hero-headline {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .section-heading-lg {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-subtitle-lg {
        font-size: 14px;
    }

    .services-tab-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .tab-panel-text h3 {
        font-size: 20px;
    }

    .process-card {
        padding: 32px 24px;
    }

    .software-card {
        padding: 28px 24px;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 16px;
    }

    .contact-content {
        padding: 20px 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 15px;
        padding: 10px;
    }

    .footer-top {
        padding: 0 16px 24px;
    }

    .ai-stats-number {
        font-size: 44px;
    }

    .voicement-stat-highlight {
        padding: 20px 16px;
    }

    .computer-mockup {
        max-width: 280px;
    }
}

/* DEMO PREVIEW MODAL */
.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-modal.active {
    display: flex;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.demo-modal-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

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

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(180deg, #dee1e6 0%, #d1d5db 100%);
    border-bottom: 1px solid #b8bcc4;
}

.demo-modal-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.demo-modal-dots {
    display: flex;
    gap: 8px;
}

.demo-modal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-modal-dots span:nth-child(1) {
    background: #ef4444;
}

.demo-modal-dots span:nth-child(2) {
    background: #eab308;
}

.demo-modal-dots span:nth-child(3) {
    background: #22c55e;
}

.demo-modal-url-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFEFB;
    padding: 6px 14px;
    border-radius: 20px;
    min-width: 300px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #c4c7cc;
}

.demo-modal-url-bar svg {
    width: 14px;
    height: 14px;
    color: #5f6368;
    flex-shrink: 0;
}

.demo-modal-title {
    font-size: 14px;
    font-weight: 400;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-modal-header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.demo-modal-external {
    color: #5f6368;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.demo-modal-external:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #202124;
}

.demo-modal-close {
    background: transparent;
    border: none;
    color: #5f6368;
    font-size: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.demo-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #202124;
}

.demo-modal-body {
    flex: 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Demo loading spinner */
.demo-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    z-index: 10;
}

.demo-loader.hidden {
    display: none;
}

.demo-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(232, 89, 12, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.demo-loader p {
    margin-top: 0;
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
}

/* Modal responsive */
@media (max-width: 768px) {
    .demo-modal {
        padding: 10px;
    }

    .demo-modal-container {
        width: 100%;
        height: 95vh;
        border-radius: 12px;
    }

    .demo-modal-header {
        padding: 10px 14px;
    }

    .demo-modal-header-left {
        gap: 10px;
    }

    .demo-modal-dots span {
        width: 10px;
        height: 10px;
    }

    .demo-modal-url-bar {
        min-width: auto;
        flex: 1;
        padding: 6px 12px;
    }

    .demo-modal-title {
        font-size: 12px;
    }

    .demo-modal-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/* LARGE SCREEN STYLES */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero {
        padding-top: 160px;
    }
    
    .benefits-grid {
        gap: 32px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1480px;
    }
    
    .step {
        padding: 40px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1680px;
    }
    
    .section-title {
        font-size: 48px;
    }
}
@keyframes voicementGradient { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
