/* ================================================
   OPTTO CRM — Marketing Website
   Design System & Styles
   Colors: Black (#0a0a0a) + Orange (#ff9900)
   Font: Inter
   ================================================ */

:root {
    --bg-primary: #050505;
    --bg-secondary: #0d0d0d;
    --bg-tertiary: #141414;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);

    --accent: #ff9900;
    --accent-light: #ffb347;
    --accent-dark: #e68a00;
    --accent-glow: rgba(255, 153, 0, 0.3);
    --accent-subtle: rgba(255, 153, 0, 0.08);

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6b6b6b;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- Background Effects ---- */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -150px;
    animation: orbFloat 15s infinite ease-in-out;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-dark);
    bottom: 20%;
    left: -100px;
    animation: orbFloat 20s infinite ease-in-out reverse;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    right: 30%;
    animation: orbFloat 12s infinite ease-in-out 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #000 !important;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #ffffff;
    color: var(--text-primary);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-subtle);
    color: var(--accent);
}

.full-w {
    width: 100%;
    justify-content: center;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.logo-img {
    height: 40px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent) !important;
    color: #000 !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Section Utilities ---- */
.section-badge {
    display: inline-block;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 153, 0, 0.15);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---- Animations ---- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    gap: 4rem;
    position: relative;
}

.hero-content {
    max-width: 580px;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 153, 0, 0.15);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--border-subtle);
}

/* ---- Hero Mockup ---- */
.hero-mockup {
    position: relative;
    flex: 1;
    max-width: 720px;
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: scale(1.03);
}

.mockup-window {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mockup-toolbar {
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-subtle);
    gap: 0.8rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    display: flex;
    min-height: 350px;
}

.mockup-sidebar {
    width: 50px;
    background: var(--bg-tertiary);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 0;
    gap: 0.3rem;
}

.sb-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition);
}

.sb-item.active {
    background: var(--accent);
    color: #000;
}

.sb-item.highlight {
    color: var(--accent);
}

.mockup-content {
    flex: 1;
    padding: 0.8rem;
    overflow: hidden;
}

/* Pipeline Columns in Mockup */
.pipeline-cols {
    display: flex;
    gap: 0.6rem;
    height: 100%;
}

.pipe-col {
    flex: 1;
    min-width: 0;
}

.pipe-header {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0.4rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.pipe-count {
    background: var(--bg-card);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.pipe-btn {
    background: var(--accent);
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    padding: 0.25rem;
    border-radius: var(--radius-xs);
    margin-bottom: 0.4rem;
}

.pipe-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 0.5rem;
    margin-bottom: 0.35rem;
}

.pipe-card.featured {
    border-color: var(--accent);
    background: var(--accent-subtle);
}

.pipe-card.won {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.pc-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.pc-company {
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.pc-price {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent);
}

/* Floating Cards */
.mockup-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-medium);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.mockup-floating-card:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.mockup-floating-card i {
    color: var(--accent);
}

.fc-1 {
    bottom: -15px;
    right: -10px;
}

.fc-2 {
    bottom: -15px;
    right: 220px;
}

/* ================================================
   REALISTIC PIPELINE MOCKUP
   ================================================ */
.mockup-pipeline-real {
    overflow: hidden;
}

.mockup-pipeline-real *,
.pipe-board-real {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mockup-pipeline-real *::-webkit-scrollbar,
.pipe-board-real::-webkit-scrollbar {
    display: none;
}

/* Top action bar */
.pipe-topbar-real {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pipe-topbar-real.compact {
    padding: 0.4rem 0.6rem;
}

.pipe-topbar-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pipe-topbar-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pipe-topbar-filter {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-xs);
}

.pipe-topbar-filter i { font-size: 0.5rem; }

.pipe-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pipe-topbar-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.55rem;
    border-radius: var(--radius-xs);
    font-size: 0.55rem;
    font-weight: 700;
    cursor: default;
    white-space: nowrap;
}

.pipe-topbar-btn.btn-ia-sos {
    background: var(--accent);
    color: #000;
}

.pipe-topbar-btn.btn-inactivos {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.pipe-topbar-btn.btn-add {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.pipe-topbar-search {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    color: var(--text-muted);
    font-size: 0.55rem;
}

/* Pipeline board */
.pipe-board-real {
    display: flex;
    gap: 0;
    padding: 0.6rem;
    overflow: hidden;
    max-height: 420px;
}

.pipe-board-real.compact {
    padding: 0.5rem;
    max-height: 340px;
}

.pipe-col-real {
    flex: 1;
    min-width: 140px;
    padding: 0 0.3rem;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
}

.pipe-col-real:last-child {
    border-right: none;
}

/* Column header */
.pcr-header {
    margin-bottom: 0.35rem;
}

.pcr-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.15rem;
}

.pcr-col-name {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pcr-trash {
    font-size: 0.5rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.pcr-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.5rem;
    color: var(--text-muted);
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--accent);
}

.pcr-total {
    font-weight: 700;
    color: var(--accent);
}

/* Email IA button per column */
.pcr-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: var(--accent);
    color: #000;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.25rem 0.3rem;
    border-radius: var(--radius-xs);
    margin-bottom: 0.35rem;
    white-space: nowrap;
}

.pcr-email-btn i {
    font-size: 0.45rem;
}

/* Proposal cards */
.pcr-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 0.5rem;
    margin-bottom: 0.3rem;
    transition: var(--transition);
}

.pcr-card:hover {
    border-color: var(--border-medium);
    background: var(--bg-card-hover);
}

.pcr-card-won {
    border-left: 2px solid var(--success);
}

.pcr-card-lost {
    border-left: 2px solid var(--danger);
    opacity: 0.7;
}

.pcr-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.2rem;
}

.pcr-card-title {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.pcr-card-top i {
    font-size: 0.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.pcr-card-company {
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.co-blue { color: #3b82f6; }
.co-orange { color: var(--accent); }
.co-green { color: var(--success); }
.co-purple { color: #a78bfa; }
.co-red { color: var(--danger); }

.pcr-card-desc {
    font-size: 0.48rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.pcr-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.25rem;
    border-top: 1px solid var(--border-subtle);
}

.pcr-card-price {
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--accent);
}

.pcr-card-user {
    font-size: 0.45rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.pcr-card-user i {
    font-size: 0.4rem;
    opacity: 0.6;
}

/* ================================================
   SOCIAL PROOF
   ================================================ */
.social-proof {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.sp-text {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.sp-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.sp-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.sp-icon i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ================================================
   FEATURES GRID
   ================================================ */
.features-section {
    padding: 6rem 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 153, 0, 0.08);
}

.fc-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 153, 0, 0.12);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   DETAIL SECTIONS (Clientes / Pipeline / Integrations)
   ================================================ */
.detail-section {
    padding: 6rem 5%;
}

.clientes-section {
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 50%, transparent 100%);
}

.detail-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-content.reverse {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.detail-text > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.detail-list {
    list-style: none;
    margin-bottom: 2rem;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.detail-list li i {
    color: var(--accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-visual {
    flex: 1;
    max-width: 580px;
    transition: transform 0.3s ease;
}

.detail-visual:hover {
    transform: scale(1.03);
}

/* ---- Clientes Mockup ---- */
.mockup-sm .mockup-body-flat {
    padding: 0.8rem;
}

.clients-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.clients-tabs {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.ct {
    padding: 0.25rem 0.6rem;
    font-size: 0.55rem;
    font-weight: 600;
    border-radius: var(--radius-xs);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.ct.active {
    background: var(--accent);
    color: #000;
}

.clients-actions {
    display: flex;
    gap: 0.3rem;
}

.ca-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: var(--radius-xs);
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.ca-btn.ai {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.ca-btn.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.3);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 0.5rem;
}

.cc-name {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.cc-person {
    font-size: 0.5rem;
    color: var(--text-secondary);
}

.cc-email {
    font-size: 0.45rem;
    color: var(--accent);
    word-break: break-all;
}

.cc-phone {
    font-size: 0.45rem;
    color: var(--text-muted);
}

/* ---- Pipeline Section ---- */
.pipeline-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 153, 0, 0.02) 50%, transparent 100%);
}

.pipeline-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.pt-filter {
    font-size: 0.55rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pt-actions {
    display: flex;
    gap: 0.3rem;
}

.pipeline-board {
    display: flex;
    gap: 0.5rem;
}

.pb-col {
    flex: 1;
    min-width: 0;
}

.pb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    border-bottom: 2px solid var(--border-subtle);
}

.pb-total {
    font-size: 0.5rem;
    color: var(--accent);
    font-weight: 700;
}

.pb-email-btn {
    background: var(--accent);
    color: #000;
    font-size: 0.5rem;
    font-weight: 700;
    text-align: center;
    padding: 0.2rem;
    border-radius: var(--radius-xs);
    margin-bottom: 0.3rem;
}

.pb-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 0.45rem;
    margin-bottom: 0.3rem;
}

.pb-card.highlight-card {
    border-color: var(--accent);
    background: var(--accent-subtle);
}

.pb-card.won-card {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.pbc-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pbc-desc {
    font-size: 0.45rem;
    color: var(--text-muted);
    margin: 0.1rem 0;
}

.pbc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.2rem;
}

.pbc-price {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--accent);
}

.pbc-user {
    font-size: 0.45rem;
    color: var(--text-muted);
}

/* ================================================
   AI SECTION
   ================================================ */
.ai-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 30%, var(--bg-secondary) 70%, transparent 100%);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.ai-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 153, 0, 0.08);
}

.ai-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.2rem;
}

.ai-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.ai-card > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* AI Demo Preview boxes */
.ai-demo {
    margin-top: 1rem;
}

.ai-email-preview,
.ai-report-preview,
.ai-inactive-preview {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    font-size: 0.75rem;
}

.aep-to, .aep-subject {
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
}

.aep-to strong, .aep-subject em {
    color: var(--text-secondary);
}

.aep-body {
    color: var(--text-secondary);
    font-size: 0.7rem;
    line-height: 1.5;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0.3rem;
}

.aep-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-xs);
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.arp-header {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
}

.arp-item {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.arp-val {
    font-weight: 700;
    color: var(--text-primary);
}

.arp-val.highlight {
    color: var(--accent);
}

.arp-footer {
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.aip-rule, .aip-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xs);
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.aip-rule i { color: var(--warning); }
.aip-result i { color: var(--danger); }

.aip-arrow {
    text-align: center;
    color: var(--text-muted);
    padding: 0.2rem;
    font-size: 0.8rem;
}

.aip-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.aip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ================================================
   EXTRA FEATURES
   ================================================ */
.extra-features-section {
    padding: 6rem 5%;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.extra-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.extra-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 153, 0, 0.08);
}

.extra-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 153, 0, 0.12);
}

.extra-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.extra-card > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.extra-preview {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Products table */
.ep-table {}

.ep-row {
    display: flex;
    padding: 0.45rem 0.6rem;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 0.5rem;
}

.ep-row:last-child { border-bottom: none; }

.ep-header {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--accent);
    font-size: 0.6rem;
    text-transform: uppercase;
}

.ep-row span {
    flex: 1;
    color: var(--text-secondary);
}

.ep-link {
    color: var(--accent) !important;
    font-weight: 600;
}

/* Email log */
.ep-log {
    padding: 0.3rem;
}

.epl-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.3rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.7rem;
}

.epl-item:last-child { border-bottom: none; }

.epl-badge {
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-xs);
    font-size: 0.55rem;
    font-weight: 700;
    flex-shrink: 0;
}

.epl-badge.sent {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.epl-badge.ai {
    background: var(--accent-subtle);
    color: var(--accent);
}

.epl-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.65rem;
}

.epl-time {
    font-size: 0.55rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Users */
.ep-users {
    padding: 0.5rem;
}

.epu-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.epu-item:last-child { border-bottom: none; }

.epu-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.epu-info {
    display: flex;
    flex-direction: column;
}

.epu-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
}

.epu-role {
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* ================================================
   INTEGRATIONS SECTION
   ================================================ */
.integrations-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, var(--bg-secondary) 50%, transparent);
}

.api-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.api-code-block {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.acb-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8rem;
}

.acb-method {
    background: var(--success);
    color: #000;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-xs);
    font-weight: 800;
    font-size: 0.65rem;
}

.acb-url {
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
}

.acb-body {
    padding: 0.8rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    overflow-x: auto;
    margin: 0;
    background: transparent;
}

.acb-body code {
    font-family: inherit;
}

.api-webhooks {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.aw-header {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.aw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.7rem;
}

.aw-item:last-child { border-bottom: none; }

.aw-event {
    font-family: 'Courier New', monospace;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.aw-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    font-weight: 600;
}

.aw-status.active {
    color: var(--success);
}

.aw-status i {
    font-size: 0.4rem;
}

/* ================================================
   CUSTOM DEVELOPMENT SECTION
   ================================================ */
.custom-dev-section {
    padding: 6rem 5%;
}

.custom-dev-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 153, 0, 0.04) 100%);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.custom-dev-container::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.custom-dev-content {
    flex: 1;
}

.custom-dev-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.custom-dev-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.custom-dev-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.custom-dev-content .btn-primary {
    margin-top: 1.2rem;
}

.custom-dev-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cdv-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cdv-item:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.cdv-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.cdv-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cdv-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================================
   PRICING
   ================================================ */
.pricing-section {
    padding: 6rem 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 153, 0, 0.15);
    background: linear-gradient(180deg, var(--accent-subtle), var(--bg-card));
}

.pricing-card.featured:hover {
    border-color: var(--accent-light);
}

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.pc-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pc-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pc-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
}

.pc-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pc-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.pc-features li:last-child {
    border-bottom: none;
}

.pc-features li i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, var(--bg-secondary));
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid #ffffff;
    border-radius: var(--radius);
    padding: 3rem;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cb-item i {
    color: var(--accent);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-row {
    display: flex;
    gap: 0.8rem;
}

.form-group {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid #ffffff;
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
    color: var(--text-secondary);
}

.contact-form select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {}

.footer-logo {
    height: 35px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-subtle);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ================================================
   LEGAL & ABOUT PAGES
   ================================================ */
.legal-page {
    padding: 140px 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-subtitle {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-tagline {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2.5rem;
    line-height: 1.8;
}

.legal-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.legal-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.legal-list li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 153, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-mockup {
        max-width: 100%;
        overflow: hidden;
    }

    .pipe-board-real {
        max-height: 350px;
    }

    .pipe-col-real {
        min-width: 120px;
    }

    .detail-content,
    .detail-content.reverse {
        flex-direction: column;
    }

    .detail-visual {
        max-width: 100%;
    }

    .features-grid,
    .ai-grid,
    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .detail-text h2 {
        font-size: 2rem;
    }

    .detail-text {
        text-align: center;
    }

    .detail-list {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .detail-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .detail-text .btn-primary {
        margin: 0 auto;
    }

    .custom-dev-container {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .custom-dev-content .btn-primary {
        margin: 1.2rem auto 0;
    }

    .cdv-item:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .ai-grid,
    .extra-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        order: -1;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .detail-text h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pipeline-board {
        flex-direction: column;
    }

    .pipe-board-real {
        max-height: 300px;
        overflow: hidden;
    }

    .pipe-col-real {
        min-width: 130px;
    }

    .pipe-topbar-real {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .pipe-topbar-title {
        display: none;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .sp-icons {
        gap: 1rem;
    }

    .mockup-floating-card {
        display: none;
    }

    .legal-page {
        padding: 120px 1.5rem 3rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }

    body {
        font-size: 14px;
    }
}
