/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue: #1a6ef5;
    --blue-light: #e8f0fe;
    --dark: #0f1724;
    --gray-100: #f8f9fb;
    --gray-200: #e9ecf1;
    --gray-400: #94a3b8;
    --gray-600: #64748b;
    --gray-800: #1e293b;
    --n8n: #ea4b71;
    --make: #6d2fba;
    --podio: #4BA54F;
    --radius: 12px;
    --radius-lg: 20px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
    height: 72px;
}

.nav-container {
    max-width: 100%; margin: 0; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}

.nav-left { display: flex; align-items: center; gap: 40px; }

.logo {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; color: var(--gray-800);
    font-weight: 700; font-size: 18px;
}

.logo-img {
    height: 64px; width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
    text-decoration: none; color: var(--gray-600);
    font-size: 14px; font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gray-800); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-login {
    text-decoration: none; color: var(--gray-800);
    font-size: 14px; font-weight: 500;
}

.btn-primary {
    display: inline-flex; align-items: center;
    background: var(--blue); color: white;
    padding: 10px 24px; border-radius: 50px;
    text-decoration: none; font-size: 14px; font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #1560d4; transform: translateY(-1px); }

/* === Top Banner === */
.top-banner {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--dark); color: white;
    height: 40px; overflow: hidden; z-index: 99;
    display: flex; align-items: center;
}

.banner-scroll {
    display: flex; align-items: center; gap: 0;
    white-space: nowrap;
    animation: bannerScroll 20s linear infinite;
}

.banner-item {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    padding: 0 16px;
}

.banner-sep {
    color: var(--gray-400); font-size: 13px;
    opacity: 0.4;
}

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

/* === Hero === */
.hero {
    padding: 160px 24px 80px;
    max-width: 1200px; margin: 0 auto;
}

.hero-border {
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
}

.hero-content { text-align: center; max-width: 800px; margin: 0 auto; }

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #e8a050, #c06898, #8080d0, #90b8e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px; color: var(--gray-600);
    max-width: 600px; margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 32px;
}

.hero-stat strong {
    font-size: 32px; font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.hero-stat span {
    font-size: 13px; font-weight: 500;
    color: var(--gray-600);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px; height: 40px;
    background: var(--gray-200);
}

@media (max-width: 600px) {
    .hero-stats { gap: 20px; }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0 16px; }
    .hero-stat strong { font-size: 24px; }
}

.btn-cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #4a8af5, #6366f1);
    color: white; padding: 14px 28px; border-radius: 50px;
    text-decoration: none; font-size: 16px; font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(26, 110, 245, 0.3);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(26, 110, 245, 0.4);
}

.btn-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* === Launch Offer in Hero === */
.launch-offer {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 32px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: var(--radius); padding: 14px 24px;
    max-width: 620px; margin-left: auto; margin-right: auto;
    margin-bottom: 32px;
    animation: offerPulse 3s ease-in-out infinite;
}
@keyframes offerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}
.launch-offer-badge {
    background: #f59e0b; color: white;
    font-size: 10px; font-weight: 800;
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: 1px; white-space: nowrap;
}
.launch-offer-text { text-align: left; }
.launch-offer-text strong { font-size: 14px; color: var(--gray-800); display: block; }
.launch-offer-text span { font-size: 12px; color: var(--gray-600); }
.launch-offer-spots {
    display: flex; flex-direction: column; align-items: center;
    flex-shrink: 0;
}
.spots-count {
    font-size: 28px; font-weight: 800; color: #dc2626; line-height: 1;
}
.spots-label { font-size: 10px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; }

.hero-ctas {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}

.hero-cta-sub {
    width: 100%; text-align: center;
    font-size: 13px; color: var(--gray-400);
    margin-top: 4px;
}

.btn-secondary {
    display: inline-flex; align-items: center;
    padding: 14px 28px; border-radius: 50px;
    border: 2px solid var(--gray-200);
    background: white; color: var(--gray-800);
    font-size: 16px; font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-secondary:hover {
    border-color: var(--blue); color: var(--blue);
}

@media (max-width: 600px) {
    .launch-offer { flex-direction: column; text-align: center; }
    .launch-offer-text { text-align: center; }
}

/* === Section Shared === */
.section-label {
    display: block; text-align: center;
    font-size: 13px; font-weight: 700;
    color: var(--blue); letter-spacing: 2px;
    margin-bottom: 16px; text-transform: uppercase;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700; text-align: center;
    line-height: 1.2; margin-bottom: 16px;
}

.section-subtitle {
    text-align: center; color: var(--gray-600);
    font-size: 16px; max-width: 500px;
    margin: 0 auto 48px;
}

/* === Two Services Section === */
.two-services { padding: 100px 0; }

.two-lanes {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 40px;
}

.lane {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
}

.lane-header {
    padding: 32px 32px 24px;
    color: white;
}
.lane-data .lane-header { background: linear-gradient(135deg, #0f172a, #1e3a5f); }
.lane-auto .lane-header { background: linear-gradient(135deg, #1a6ef5, #4f46e5); }

.lane-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}

.lane-header h3 {
    font-size: 24px; font-weight: 800;
    margin-bottom: 6px;
}

.lane-subtitle {
    font-size: 14px; opacity: 0.8;
    margin: 0; line-height: 1.5;
}

.lane-list {
    list-style: none; padding: 24px 32px;
    margin: 0; flex: 1;
    background: white; border-left: 1.5px solid var(--gray-200);
    border-right: 1.5px solid var(--gray-200);
}
.lane-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}
.lane-list li:last-child { border-bottom: none; }
.lane-list li strong {
    display: block; font-size: 15px;
    font-weight: 700; color: var(--gray-800);
    margin-bottom: 3px;
}
.lane-list li span {
    font-size: 13px; color: var(--gray-600);
    line-height: 1.5;
}

.lane-bottom {
    padding: 16px 32px;
    background: var(--gray-100);
    font-size: 13px; color: var(--gray-600);
    border: 1.5px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.lane-best-for {
    font-weight: 700; color: var(--gray-800);
}

/* Both Together */
.both-together {
    display: flex; align-items: center; gap: 24px;
    margin-top: 32px;
}
.both-together-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}
.both-together-content {
    text-align: center; font-size: 16px;
    color: var(--gray-600);
    padding: 20px 32px;
    background: white; border: 2px solid var(--blue);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 4px rgba(26,110,245,0.08);
    flex-shrink: 0;
}
.both-together-content strong { color: var(--blue); }

@media (max-width: 900px) {
    .two-lanes { grid-template-columns: 1fr; }
    .both-together-content { white-space: normal; border-radius: var(--radius); }
}

/* === Pipeline Section === */
.pipeline-section { padding: 100px 0; }

.pipeline {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; margin-top: 16px;
}

.pipeline-step {
    flex: 1; max-width: 320px;
    background: white; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 32px;
    text-align: center; position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pipeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pipeline-step-number {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--blue); color: white;
    font-size: 13px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

.pipeline-step-icon {
    width: 64px; height: 64px; margin: 8px auto 16px;
    background: var(--blue-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.pipeline-step h3 {
    font-size: 22px; font-weight: 700; margin-bottom: 10px;
}

.pipeline-step > p {
    font-size: 14px; color: var(--gray-600); line-height: 1.7;
    margin-bottom: 16px;
}

.pipeline-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

.pipeline-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0 8px; margin-top: 80px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pipeline { flex-direction: column; align-items: center; gap: 16px; }
    .pipeline-arrow { transform: rotate(90deg); margin: 0; padding: 8px 0; }
}

/* === Services === */
.services { padding: 100px 0; background: var(--gray-100); }

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

.service-block {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,110,245,0.1);
}

.service-badge {
    position: absolute; top: -10px; right: 20px;
    background: var(--blue); color: white;
    font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 48px; height: 48px;
    background: var(--blue-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}

.service-block h3 {
    font-size: 18px; font-weight: 700;
    margin-bottom: 10px;
}

.service-block > p {
    font-size: 13px; color: var(--gray-600);
    line-height: 1.7; margin-bottom: 16px;
}

.service-result {
    font-size: 13px; padding: 10px 14px;
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 8px; color: #166534;
}
.service-result span {
    font-weight: 700; display: block;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.5px; color: #15803d;
    margin-bottom: 2px;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* === Pricing === */
.pricing { padding: 100px 0; }

.pricing-offer-card {
    display: flex; flex-direction: column;
    background: white; border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 40px;
}

.pricing-offer-left {
    padding: 40px 48px;
}

.pricing-launch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white; font-size: 11px; font-weight: 800;
    padding: 5px 14px; border-radius: 50px;
    letter-spacing: 1px; margin-bottom: 16px;
}

.pricing-offer-left h3 {
    font-size: 24px; font-weight: 700;
    line-height: 1.3; margin-bottom: 16px;
}

.pricing-offer-left > p {
    font-size: 15px; color: var(--gray-600);
    margin-bottom: 16px;
}

.pricing-steps {
    list-style: none; padding: 0; counter-reset: step;
    margin-bottom: 24px;
}
.pricing-steps li {
    counter-increment: step;
    font-size: 14px; color: var(--gray-600);
    line-height: 1.7; padding: 8px 0;
    padding-left: 36px; position: relative;
}
.pricing-steps li::before {
    content: counter(step);
    position: absolute; left: 0; top: 8px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

.pricing-why {
    font-size: 13px; color: var(--gray-600);
    padding: 16px; background: var(--gray-100);
    border-radius: var(--radius); line-height: 1.7;
}
.pricing-why strong { color: var(--gray-800); }

.pricing-offer-right {
    background: var(--gray-100);
    padding: 36px 48px;
    border-top: 1px solid var(--gray-200);
}

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

.pricing-card-header {
    grid-column: 1 / -1;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gray-400); margin-bottom: 4px;
}

.pricing-tier h4 {
    font-size: 17px; font-weight: 700; margin-bottom: 6px;
}

.pricing-tier-icon {
    width: 40px; height: 40px;
    background: var(--blue-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
}

.pricing-tier > p {
    font-size: 13px; color: var(--gray-600); line-height: 1.5;
}

.pricing-tier-divider {
    display: none;
}

.pricing-custom-note {
    margin-top: 20px; padding: 12px 16px;
    background: white; border-radius: var(--radius);
    font-size: 12px; color: var(--gray-600);
    line-height: 1.6; text-align: center;
    border: 1px dashed var(--gray-200);
}

.pricing-cta-wrap { text-align: center; }
.pricing-cta-sub {
    font-size: 13px; color: var(--gray-400);
    margin-top: 12px;
}

@media (max-width: 900px) {
    .pricing-offer-left { padding: 28px; }
    .pricing-offer-right { padding: 28px; }
    .pricing-card { grid-template-columns: 1fr; }
}

/* === Integrations === */
.integrations { padding: 100px 0; background: var(--gray-100); }

/* Neural Network Flow */
.neural-flow-wrapper {
    position: relative;
    padding: 20px 0;
    min-height: 420px;
}

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

.neural-flow {
    position: relative; z-index: 2;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 24px; padding: 20px 0;
}

/* Columns */
.nf-col {
    display: flex; flex-direction: column; gap: 12px;
    flex: 1; max-width: 200px;
}

.nf-col-label, .nf-cluster-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--blue); margin-bottom: 4px;
}

/* Nodes */
.nf-node {
    display: flex; align-items: center; gap: 10px;
    background: white; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); padding: 10px 16px;
    font-size: 14px; font-weight: 600; color: var(--gray-800);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    white-space: nowrap;
    position: relative;
}

.nf-node.pulse {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(26,110,245,0.12), 0 4px 16px rgba(0,0,0,0.08);
    transform: scale(1.04);
}

.nf-node img { flex-shrink: 0; }

.nf-node-sm {
    padding: 6px 10px; font-size: 12px; gap: 6px;
}
.nf-node-sm img { width: 20px; height: 20px; }

/* Output clusters column */
.nf-col-outputs { max-width: 280px; gap: 16px; }

.nf-cluster {
    background: white; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.nf-cluster.pulse {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(26,110,245,0.12), 0 4px 16px rgba(0,0,0,0.08);
}

.nf-cluster-row {
    display: flex; gap: 6px; flex-wrap: wrap;
}

.nf-cluster-row .nf-node {
    border: 1px solid var(--gray-200);
    box-shadow: none;
}

@media (max-width: 900px) {
    .neural-flow { flex-direction: column; align-items: center; }
    .nf-col { max-width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .nf-col-outputs { flex-direction: column; }
    #neuralCanvas { display: none; }
}

.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600;
    color: var(--blue); text-decoration: none;
    transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* === Agentic Flows === */
.flows-section { padding: 100px 0; }

.flow-canvas {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    overflow: hidden;
}

.flow-title {
    font-size: 16px; font-weight: 600;
    margin-bottom: 24px; color: var(--gray-800);
}

.canvas-container {
    position: relative;
    height: 160px;
    width: 100%;
}

.flow-svg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.flow-nodes {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
}

.flow-node {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: 13px; font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.flow-node.active {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,110,245,0.15), 0 4px 12px rgba(0,0,0,0.08);
}

.flow-node-dot {
    width: 10px; height: 10px;
    border-radius: 50%; flex-shrink: 0;
}

.flow-node-dot.scrape { background: #ea4b71; }
.flow-node-dot.ai { background: var(--blue); }
.flow-node-dot.crm { background: #FF7A59; }
.flow-node-dot.email { background: #10a37f; }
.flow-node-dot.slack { background: #4A154B; }
.flow-node-dot.trigger { background: #f59e0b; }

/* Particle animation on SVG paths */
.flow-path {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 2;
}

.flow-particle {
    r: 4;
    fill: var(--blue);
    filter: drop-shadow(0 0 4px rgba(26,110,245,0.5));
}

/* === Use Cases === */
.use-cases { padding: 100px 0; background: var(--gray-100); }

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

.case-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    display: flex; flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.card-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.dot {
    width: 14px; height: 14px;
    border-radius: 4px;
}
.dot.green { background: #22c55e; }
.dot.orange { background: #f97316; }
.dot.blue { background: #3b82f6; }
.dot.red { background: #ef4444; }

.case-card h4 {
    font-size: 16px; font-weight: 700;
    margin-bottom: 10px; line-height: 1.35;
}

.case-card > p {
    font-size: 13px; color: var(--gray-600);
    line-height: 1.65; flex: 1;
    margin-bottom: 20px;
}

.case-card .card-link { margin-top: auto; }

/* === Security === */
.security { padding: 100px 24px; }

.security-inner {
    max-width: 1200px; margin: 0 auto;
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex; align-items: center; gap: 60px;
}

.security-left { flex: 1; }
.security-left h2 {
    text-align: left; color: white;
    font-size: clamp(28px, 3.5vw, 40px);
}

.security-right {
    flex: 1;
    display: flex; flex-direction: column; gap: 24px;
}

.security-badge {
    display: flex; align-items: center; gap: 16px;
    color: white;
}
.badge-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.badge-icon svg { width: 28px; height: 28px; }
.badge-icon svg path, .badge-icon svg rect, .badge-icon svg circle {
    stroke: #60a5fa;
}
.badge-icon svg path[fill="#2563eb"] { fill: rgba(96,165,250,0.2); }

.security-badge strong { font-size: 15px; display: block; margin-bottom: 2px; }
.security-badge p { font-size: 13px; color: var(--gray-400); margin: 0; }

/* === About === */
.about { padding: 100px 0; background: var(--gray-100); }

.about-content {
    max-width: 760px; margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 15px; color: var(--gray-600);
    line-height: 1.8; margin-bottom: 16px;
}

.about-content p:last-child { margin-bottom: 0; }

/* === FAQ === */
.faq { padding: 100px 0; }

.faq-list {
    max-width: 760px; margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item[open] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 16px; font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    color: var(--gray-800);
    transition: background 0.2s;
}
.faq-item summary:hover { background: var(--gray-100); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px; font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '-';
}

.faq-item > p {
    padding: 0 24px 20px;
    font-size: 14px; color: var(--gray-600);
    line-height: 1.75;
}

/* === Footer === */
.footer {
    border-top: 1px solid var(--gray-200);
    padding: 48px 0;
}

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

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

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
}

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

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

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

.footer-copy {
    font-size: 13px;
    color: var(--gray-400);
}

/* === Responsive === */
@media (max-width: 900px) {
    .integration-cards, .cases-grid { grid-template-columns: 1fr; }
    .security-inner { flex-direction: column; padding: 40px; }
    .security-left h2 { text-align: center; }
    .nav-links { display: none; }
    .canvas-container { height: 200px; }
    .flow-node { font-size: 11px; padding: 8px 12px; }
}

@media (max-width: 600px) {
.hero-border { padding: 48px 20px; }
    .canvas-container { height: 280px; overflow-x: auto; }
}
