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

:root {
    --bg-base: #060b18;
    --bg-surface: #0d1424;
    --bg-card: #111827;
    --bg-card-hover: #162032;
    --border: rgba(6, 182, 212, 0.12);
    --border-hover: rgba(6, 182, 212, 0.4);
    --cyan: #06b6d4;
    --cyan-light: #22d3ee;
    --cyan-dark: #0891b2;
    --text-primary: #f0f9ff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #22d3ee;
    --danger: #f43f5e;
    --gradient-cyan: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
    --gradient-cta: linear-gradient(135deg, #06b6d4 0%, #0891b2 60%, #0e7490 100%);
    --gradient-hero: linear-gradient(180deg, #060b18 0%, #0d1a2e 100%);
    --glow-cyan: 0 0 40px rgba(6, 182, 212, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    background: rgba(6, 11, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 11, 24, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

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

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--cyan-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-contact {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-nav-contact:hover {
    color: var(--cyan-light);
    background: rgba(6, 182, 212, 0.08);
}

.btn-primary {
    background: var(--gradient-cta);
    color: #fff;
    border: none;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6, 182, 212, 0.4);
    filter: brightness(1.08);
}

.btn-primary.btn-large {
    padding: 0.85rem 2.2rem;
    font-size: 1.05rem;
}

.btn-primary.btn-full {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-hover);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.btn-ghost:hover {
    border-color: var(--cyan-light);
    color: var(--cyan-light);
    background: rgba(34, 211, 238, 0.06);
}

.btn-ghost.btn-large {
    padding: 0.85rem 2.2rem;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-hover);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.btn-outline:hover {
    border-color: var(--cyan-light);
    color: var(--cyan-light);
    background: rgba(34, 211, 238, 0.05);
}

.btn-outline.btn-full {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

.section-tag {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-light);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-cyan-gradient {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    top: -100px;
    left: -200px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
    top: 0;
    right: -100px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--cyan-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan-light);
    border-radius: 50%;
    animation: badge-blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badge-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-heading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    flex: 1;
    min-width: 90px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    padding-right: 0;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan-light);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
    text-align: center;
}

.hero-visual-wrap {
    position: relative;
}

.dashboard-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(6, 182, 212, 0.08);
}

.dp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}

.dp-dots {
    display: flex;
    gap: 6px;
}

.dp-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dp-dot-red { background: #f87171; }
.dp-dot-yellow { background: #fbbf24; }
.dp-dot-green { background: #34d399; }

.dp-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.dp-live {
    font-size: 0.7rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.dp-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.dp-metric {
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dp-metric:nth-child(2),
.dp-metric:nth-child(4) {
    border-right: none;
}

.dp-metric:nth-child(3),
.dp-metric:nth-child(4) {
    border-bottom: none;
}

.dp-metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dp-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.dp-metric-delta {
    font-size: 0.75rem;
    font-weight: 600;
}

.dp-metric-delta.positive { color: #34d399; }
.dp-metric-delta.negative { color: #f87171; }

.dp-chart {
    padding: 1.5rem;
}

.dp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 0.75rem;
}

.dp-bar {
    flex: 1;
    height: var(--h);
    background: rgba(6, 182, 212, 0.25);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.dp-bar:hover,
.dp-bar-active {
    background: rgba(6, 182, 212, 0.7);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.dp-chart-label {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-align: center;
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: float-card 3s ease-in-out infinite;
}

.hero-float-1 {
    bottom: 80px;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-2 {
    top: 60px;
    right: -30px;
    animation-delay: 1.5s;
}

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

.hf-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hf-text {
    display: flex;
    flex-direction: column;
}

.hf-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hf-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.platform {
    padding: 110px 0;
    background: var(--bg-surface);
}

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

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: all var(--transition);
}

.platform-card:hover {
    border-color: rgba(6, 182, 212, 0.35);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(6, 182, 212, 0.15);
}

.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.targeting {
    padding: 110px 0;
    background: var(--bg-base);
}

.targeting-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.targeting-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0;
}

.lead-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.targeting-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.targeting-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.targeting-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: var(--bg-card-hover);
}

.ti-icon {
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ti-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.ti-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.targeting-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.target-rings {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
    animation: ring-pulse 3s ease-in-out infinite;
}

.ring-4 {
    width: 380px;
    height: 380px;
    border-color: rgba(6, 182, 212, 0.08);
    animation-delay: 0s;
}

.ring-3 {
    width: 290px;
    height: 290px;
    border-color: rgba(6, 182, 212, 0.14);
    animation-delay: 0.4s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(6, 182, 212, 0.22);
    animation-delay: 0.8s;
}

.ring-1 {
    width: 120px;
    height: 120px;
    border-color: rgba(6, 182, 212, 0.4);
    animation-delay: 1.2s;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.04); opacity: 1; }
}

.target-center-node {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.1) 100%);
    border: 2px solid rgba(6, 182, 212, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.35), inset 0 0 20px rgba(6, 182, 212, 0.1);
}

.target-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--cyan-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
}

.orbit-dot-1 {
    animation: orbit-1 6s linear infinite;
}

.orbit-dot-2 {
    animation: orbit-2 9s linear infinite;
    width: 7px;
    height: 7px;
    background: var(--cyan-dark);
}

.orbit-dot-3 {
    animation: orbit-3 13s linear infinite;
    width: 6px;
    height: 6px;
    opacity: 0.7;
}

@keyframes orbit-1 {
    from { transform: rotate(0deg) translateX(145px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(145px) rotate(-360deg); }
}

@keyframes orbit-2 {
    from { transform: rotate(120deg) translateX(100px) rotate(-120deg); }
    to { transform: rotate(480deg) translateX(100px) rotate(-480deg); }
}

@keyframes orbit-3 {
    from { transform: rotate(240deg) translateX(60px) rotate(-240deg); }
    to { transform: rotate(600deg) translateX(60px) rotate(-600deg); }
}

.analytics {
    padding: 110px 0;
    background: var(--bg-surface);
}

.analytics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.analytics-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 2rem 0 2.5rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    border: 1.5px solid rgba(6, 182, 212, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%2306b6d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.analytics-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.ac-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.ac-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ac-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    animation: pulse-live 2s ease-in-out infinite;
}

.ac-chart {
    padding: 1.25rem 1.5rem 0;
}

.ac-chart svg {
    display: block;
}

.ac-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.25rem 1.5rem;
    gap: 0;
}

.ac-kpi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 0.75rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

.ac-kpi:last-child {
    border-right: none;
}

.ac-kpi-label {
    font-size: 0.73rem;
    color: var(--text-muted);
    font-weight: 500;
}

.ac-kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.ac-kpi-delta {
    font-size: 0.73rem;
    font-weight: 600;
}

.ac-kpi-delta.up { color: #34d399; }
.ac-kpi-delta.down { color: #f87171; }

.analytics-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    transition: all var(--transition);
}

.mini-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.mc-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.mc-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cyan-light);
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.mc-bar {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.mc-bar-fill {
    height: 100%;
    width: var(--w);
    background: var(--gradient-cyan);
    border-radius: 2px;
}

.stats-banner {
    padding: 80px 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.stats-banner-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.sb-stat {
    text-align: center;
}

.sb-value {
    font-size: 2.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.sb-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.pricing {
    padding: 110px 0;
    background: var(--bg-base);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border-color: rgba(6, 182, 212, 0.4);
    background: linear-gradient(160deg, rgba(6, 182, 212, 0.07) 0%, var(--bg-card) 60%);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.12), 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card-featured:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.2), 0 24px 70px rgba(0, 0, 0, 0.4), var(--glow-cyan);
}

.pc-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.pc-header {
    margin-bottom: 1.75rem;
}

.pc-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.pc-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pc-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pc-amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.pc-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pc-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5l2.5 2.5 4.5-5' stroke='%2306b6d4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact {
    padding: 110px 0;
    background: var(--bg-surface);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-email-link {
    color: var(--cyan-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.contact-email-link:hover {
    color: var(--cyan);
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-field select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(6, 182, 212, 0.04);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.btn-submit {
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.footer {
    padding: 5rem 0 2.5rem;
    background: var(--bg-base);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cyan-light);
    margin: 0;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 340px;
    margin: 0;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-email:hover {
    color: var(--cyan-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual-wrap {
        display: none;
    }

    .hero-heading {
        font-size: 3.2rem;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .targeting-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .targeting-visual {
        display: none;
    }

    .analytics-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .btn-nav-contact {
        display: none;
    }

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

    .hero-heading {
        font-size: 2.6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-stat {
        padding: 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .analytics-mini-cards {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

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

    .ac-kpis {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ac-kpi {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1rem;
    }

    .ac-kpi:last-child {
        border-bottom: none;
    }

    .dp-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-heading {
        font-size: 2.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
