/* Premium Design System */
@font-face {
    font-family: 'TT Firs Neue';
    src: url('font/TTFirsNeue-Regular.woff2') format('woff2'), url('font/TTFirsNeue-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('font/TTFirsNeue-Medium.woff2') format('woff2'), url('font/TTFirsNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('font/TTFirsNeue-DemiBold.woff2') format('woff2'), url('font/TTFirsNeue-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

:root {
    --bg: #09090b;
    --bg-elevated: #18181b;
    --bg-muted: #27272a;
    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --font: 'TT Firs Neue', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

/* Background Effects */
.noise {
    display: none;
}

.gradient-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.gradient-orb {
    display: none;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation: float2 25s ease-in-out infinite;
}

.gradient-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: 20%;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -40px);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
.section-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--border);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}

.header.scrolled {
    padding: 14px 0;
    border-bottom-color: var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
}

.nav {
    display: flex;
    gap: 40px;
}

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

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

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--border);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.header-cta:hover {
    background: var(--border-hover);
    border-color: var(--text-muted);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}



.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.15);
    background: #ffffff;
    color: #000000;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 140px 0 100px;
    padding-left: max(32px, calc((100vw - 1200px) / 2 + 32px));
    padding-right: max(32px, calc((100vw - 1200px) / 2 + 32px));
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: var(--border);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-accent {
    background: linear-gradient(135deg, #d4d4d8 0%, #fafafa 25%, #a1a1aa 50%, #fafafa 75%, #d4d4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: chrome 3s linear infinite;
}

@keyframes chrome {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.visual-ring {
    display: none;
}

/* CRM Dashboard Animation */
/* CRM Dashboard Animation */
.crm-dashboard {
    display: grid;
    grid-template-columns: 180px 130px 130px;
    grid-template-rows: repeat(4, auto);
    gap: 16px;
    perspective: 1000px;
}

.dashboard-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    animation: cardFloat 6s ease-in-out infinite;
}

/* 
.dashboard-card:nth-child(2) { animation-delay: -1s; }
.dashboard-card:nth-child(3) { animation-delay: -2s; }
.dashboard-card:nth-child(4) { animation-delay: -3s; }
*/

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.card-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Funnel Card */
.card-funnel {
    grid-row: span 2;
}

.funnel-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.funnel-bar {
    height: 24px;
    width: var(--width);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 4px;
    animation: barLoad 2s ease-out var(--delay) both;
}

@keyframes barLoad {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: var(--width);
        opacity: 1;
    }
}

/* Stats Card */
.card-stats .stat-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-stats .stat-icon {
    font-size: 1rem;
    color: #22c55e;
}

.card-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 25%, #b0b0b0 50%, #ffffff 75%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-stats .stat-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Chart Card */
.card-chart {
    grid-column: span 2;
}

.chart-line {
    width: 100%;
    height: 40px;
    color: #22c55e;
}

.chart-line path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease-out 0.5s forwards;
}

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

/* Deals Card */
.card-deals {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.deal-item:nth-child(1) {
    animation-delay: 0.8s;
}

.deal-item:nth-child(2) {
    animation-delay: 1s;
}

.deal-item:nth-child(3) {
    animation-delay: 1.2s;
}

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

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

.deal-dot.success {
    background: #22c55e;
}

.deal-dot.pending {
    background: #f59e0b;
}

/* Metric Cards */
.card-metric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d4d4d8 0%, #fafafa 25%, #a1a1aa 50%, #fafafa 75%, #d4d4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: chrome 3s linear infinite;
}

.metric-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.card-metric-alt .metric-value {
    color: #22c55e;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Tasks Card */
.card-tasks {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.task-item:nth-child(1) {
    animation-delay: 1.4s;
}

.task-item:nth-child(2) {
    animation-delay: 1.6s;
}

.task-check {
    width: 14px;
    height: 14px;
    border: 1px solid var(--border-hover);
    border-radius: 3px;
    position: relative;
}

.task-item.done .task-check {
    background: #22c55e;
    border-color: #22c55e;
}

.task-item.done .task-check::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: white;
}

.task-item.done span:last-child {
    text-decoration: line-through;
    color: var(--text-muted);
}


/* Sales Target Card */
.card-target {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.target-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.target-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.target-progress {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #22c55e;
    border-radius: 3px;
    width: 0;
    animation: fillBar 1.5s ease-out forwards 0.5s;
}

@keyframes fillBar {
    to {
        width: var(--width);
    }
}

.target-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.meta-label {
    color: #22c55e;
    font-weight: 600;
}

.meta-sub {
    color: var(--text-muted);
}

/* Disable hover effects on dashboard */
.crm-dashboard .dashboard-card:hover {
    transform: none !important;
}

/* Green Pulse */
.pulse-green {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Logos */
.logos {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logos-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.logos-track {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s var(--ease);
}

.logo-item:hover {
    opacity: 1;
}

/* Method */
.method {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.method-card {
    position: relative;
    padding: 32px;
    background: linear-gradient(145deg, rgba(39, 39, 42, 0.4) 0%, rgba(24, 24, 27, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.method-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.05);
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(39, 39, 42, 0.6) 0%, rgba(24, 24, 27, 0.6) 100%);
}

.method-card-large {
    grid-row: span 2;
}

.method-card-wide {
    grid-column: span 2;
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    height: 24px;
    padding: 0 10px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.method-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

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

.card-checklist {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 290px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

.card-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services */
.services {
    padding: 140px 0;
    /* background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%); */
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: var(--bg);
    transition: all 0.3s var(--ease);
}

.service-item:hover {
    background: var(--bg-elevated);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border);
    border-radius: var(--radius-sm);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
}

.service-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.service-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}

.service-item:hover .service-link {
    background: var(--accent);
    color: white;
    transform: rotate(-45deg);
}

/* CTA */
.cta {
    padding: 80px 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-hover);
}


.cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-content {
    position: relative;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-card .btn-primary {
    background: white;
    color: #000000;
    flex-shrink: 0;
    position: relative;
    font-weight: 600;
}

.cta-card .btn-primary:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

/* Contact */
.contact {
    padding: 140px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.contact-method:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
}

.contact-method svg {
    color: var(--text-muted);
}

.contact-method span {
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-form {
    padding: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    transition: all 0.2s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

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

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

.footer-nav {
    display: flex;
    gap: 32px;
}

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

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.footer-social a:hover {
    background: var(--border-hover);
    color: var(--text);
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

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

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service item specific animation to fix gray background */
.service-item.animate-in {
    opacity: 1;
    transform: none;
}

.service-item.animate-in>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out);
}

.service-item.animate-in.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

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

    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        height: auto;
        margin-top: 40px;
        opacity: 0.9;
        pointer-events: none;
    }

    .crm-dashboard {
        transform: scale(0.85);
        transform-origin: center top;
    }

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

    .method-card-large {
        grid-row: auto;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
        gap: 20px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .hero-actions {
        margin-bottom: 16px;
        gap: 12px;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .crm-dashboard {
        transform: none;
        width: 100%;
        grid-template-columns: 2fr 1.3fr 1.3fr;
        gap: 12px;
    }

    .dashboard-card {
        padding: 16px;
        border-radius: 10px;
    }

    .metric-value {
        font-size: 1.2rem;
    }

    .metric-label {
        font-size: 0.6rem;
    }

    .card-title {
        font-size: 0.65rem;
    }

    .target-value {
        font-size: 1.1rem;
    }

    .method {
        padding: 60px 0;
    }

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

    .method-card-wide {
        grid-column: auto;
    }

    .method-card {
        padding: 24px;
    }

    .section-header {
        margin-bottom: 32px;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .services {
        padding: 60px 0;
    }

    .section-header-center {
        margin: 0 auto 40px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        padding: 24px 20px;
    }

    .service-icon {
        margin: 0 auto;
        width: 48px;
        height: 48px;
    }

    .service-link {
        display: none;
    }

    .logos {
        padding: 32px 0;
    }

    .logos-label {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .logos-track {
        gap: 16px 28px;
        justify-content: center;
    }

    .logo-item {
        font-size: 0.875rem;
    }

    .contact {
        padding: 60px 0;
    }

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

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

    .contact-form {
        padding: 24px 20px;
    }

    .cta {
        padding: 40px 0;
    }

    .cta-card {
        padding: 36px 24px;
    }

    .cta-content h2 {
        font-size: 1.25rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
    }

    .footer {
        padding: 32px 0 20px;
    }

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

    .footer-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 88px;
        padding-bottom: 32px;
    }

    .hero-label {
        font-size: 0.7rem;
        padding: 6px 12px 6px 10px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.8125rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 0.875rem;
        justify-content: center;
    }

    .crm-dashboard {
        transform: none;
        width: 100%;
        grid-template-columns: 2fr 1.3fr 1.3fr;
        gap: 10px;
    }

    .dashboard-card {
        padding: 12px;
        border-radius: 8px;
    }

    .metric-value {
        font-size: 1rem;
    }

    .card-dot {
        width: 5px;
        height: 5px;
    }

    .funnel-bar {
        height: 18px;
    }

    .section-title {
        font-size: clamp(1.375rem, 6vw, 1.75rem);
    }

    .section-label {
        font-size: 0.65rem;
        margin-bottom: 12px;
        padding: 5px 12px;
    }

    .method {
        padding: 48px 0;
    }

    .method-card {
        padding: 20px;
    }

    .method-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .method-card p {
        font-size: 0.8125rem;
    }

    .card-number {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }

    .card-stats {
        gap: 20px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .card-checklist {
        max-height: 220px;
        gap: 8px;
    }

    .check-item {
        font-size: 0.8125rem;
        padding: 8px 10px;
        gap: 10px;
    }

    .services {
        padding: 48px 0;
    }

    .service-item {
        padding: 20px 16px;
    }

    .service-content h3 {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.8125rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .cta-card {
        padding: 28px 16px;
    }

    .cta-content h2 {
        font-size: 1.125rem;
    }

    .cta-content p {
        font-size: 0.8125rem;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 0.875rem;
    }

    .contact {
        padding: 48px 0;
    }

    .contact-desc {
        font-size: 0.9375rem;
    }

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

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.875rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-method {
        padding: 12px 14px;
        gap: 12px;
    }

    .contact-method span {
        font-size: 0.8125rem;
    }

    .contact-methods {
        margin-top: 28px;
        gap: 10px;
    }

    .logos-track {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer {
        padding: 28px 0 16px;
    }

    .footer-main {
        padding-bottom: 24px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

.hide-mobile {
    display: inline;
}

@media (max-width: 640px) {
    .hide-mobile {
        display: none;
    }
}