:root {
    --primary: #00929e;
    --primary-2: #00b6c4;
    --secondary: #ee522a;
    --dark: #20282c;
    --text: #4e565a;
    --muted: #7b878d;
    --light: #f5fbfc;
    --white: #ffffff;
    --line: #dce9eb;
    --shadow: 0 24px 70px rgba(0, 42, 48, 0.14);
    --soft-shadow: 0 14px 40px rgba(0, 42, 48, 0.08);
    --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(0,146,158,.12); backdrop-filter: blur(16px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; }
.brand-logo { width: 168px; max-height: 54px; object-fit: contain; }
.brand-logo:not([src]), .brand-logo[src=""] { display: none; }
.brand-fallback { font-size: 1.06rem; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 800; font-size: .94rem; color: var(--dark); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 11px 18px; border-radius: 999px; color: var(--white) !important; background: var(--secondary); box-shadow: 0 12px 28px rgba(238,82,42,.24); }

.section { padding: 96px 0; }
.section-gradient { position: relative; overflow: hidden; background: radial-gradient(circle at 8% 14%, rgba(238,82,42,.16), transparent 34%), radial-gradient(circle at 86% 18%, rgba(0,146,158,.24), transparent 34%), linear-gradient(135deg,#f7feff 0%,#fff 48%,#fff8f5 100%); }
.section-gradient::after { content: ""; position: absolute; inset: auto -8% -26% -8%; height: 360px; background: radial-gradient(ellipse at center, rgba(0,146,158,.08), transparent 60%); pointer-events: none; }
.hero { padding: 106px 0 80px; }
.hero-grid, .workflow-grid, .split-grid, .warehouse-grid, .commercial-grid, .footer-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--secondary); font-size: .78rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 3px; border-radius: 999px; background: var(--primary); }
h1,h2,h3,h4 { margin: 0; color: var(--dark); line-height: 1.08; letter-spacing: -.055em; }
h1 { max-width: 790px;  }
h1::first-line { color: var(--primary); }

h3 { font-size: 1.38rem; }
.hero-text, .section-heading p, .cta-box p { margin: 24px 0 0; max-width: 660px; color: var(--text); font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 950; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg,var(--primary),var(--primary-2)); box-shadow: 0 18px 42px rgba(0,146,158,.25); }
.btn-secondary { color: var(--secondary); background: #fff1ec; border: 1px solid rgba(238,82,42,.18); }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; max-width: 660px; }
.hero-stats div { padding: 18px; border: 1px solid rgba(0,146,158,.13); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: var(--soft-shadow); }
.hero-stats strong { display: block; color: var(--primary); font-size: 1.55rem; line-height: 1; }
.hero-stats span { display: block; margin-top: 7px; color: var(--muted); font-size: .88rem; font-weight: 800; }
.hero-visual { position: relative; min-height: 585px; }
.dashboard-card, .phone-card, .image-slot, .commercial-card, .benefit-card, .module-grid article, .cta-box { border: 1px solid rgba(0,146,158,.12); background: var(--white); box-shadow: var(--shadow); }
.dashboard-card { position: relative; z-index: 2; width: min(100%, 580px); margin-left: auto; padding: 26px; border-radius: 34px; }
.floating-card { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.mock-toolbar { display: flex; gap: 8px; margin-bottom: 24px; }
.mock-toolbar span { width: 12px; height: 12px; border-radius: 50%; background: #d7e5e7; }
.mock-toolbar span:nth-child(1) { background: var(--secondary); } .mock-toolbar span:nth-child(2) { background: #ffc66c; } .mock-toolbar span:nth-child(3) { background: var(--primary); }
.mock-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.mock-header small { color: var(--muted); font-weight: 850; }
.badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 950; }
.badge.success { color: var(--primary); background: rgba(0,146,158,.1); }
.kpi-grid-mini { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.kpi-grid-mini div { padding: 12px; border-radius: 16px; background: #f6fbfc; border: 1px solid var(--line); }
.kpi-grid-mini b { display: block; color: var(--dark); line-height: 1.1; font-size: 1.05rem; }
.kpi-grid-mini span { display: block; margin-top: 5px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.pipeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 11px; margin: 20px 0; }
.step { min-height: 118px; padding: 16px; border-radius: 22px; background: #f4f7f8; border: 1px solid #e6eff1; }
.step.active { color: var(--white); background: linear-gradient(160deg,var(--primary),#00bac8); }
.step span, .step strong { display: block; }
.step span { font-size: .78rem; font-weight: 850; }
.step strong { margin-top: 24px; font-size: 2rem; line-height: 1; }
.purchase-list { display: grid; gap: 12px; }
.purchase-list div, .mobile-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 15px; border-radius: 16px; background: #f8fbfc; color: var(--dark); font-weight: 760; }
.dot { display: inline-flex; width: 10px; height: 10px; margin-right: 8px; border-radius: 50%; }
.dot.primary { background: var(--primary); } .dot.orange { background: var(--secondary); } .dot.gray { background: #88959b; }
.phone-card { position: absolute; right: 8px; bottom: 16px; z-index: 3; width: 218px; min-height: 292px; padding: 34px 22px 22px; border-radius: 36px; color: var(--white); background: linear-gradient(160deg,#233034,#0a909b 70%); }
.phone-notch, .phone-top { width: 72px; height: 8px; margin: 0 auto 30px; border-radius: 999px; background: rgba(255,255,255,.4); }
.phone-card p { margin: 0 0 10px; color: rgba(255,255,255,.72); font-weight: 850; }
.phone-card h4 { color: var(--white); font-size: 1.55rem; }
.mini-code { display: inline-flex; margin-top: 24px; padding: 10px 12px; border-radius: 999px; color: var(--dark); background: var(--white); font-weight: 950; }
.logos-strip { padding: 22px 0; color: var(--white); background: linear-gradient(90deg,var(--primary),#00727c 55%,var(--secondary)); }
.strip-content { text-align: center; font-weight: 950; letter-spacing: -.01em; }
.section-heading.centered { max-width: 860px; margin: 0 auto 48px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit-card, .module-grid article, .commercial-card { padding: 28px; border-radius: var(--radius); }
.benefit-card { min-height: 292px; }
.benefit-card.featured { color: var(--white); background: linear-gradient(160deg,var(--primary),#006f78); }
.benefit-card.featured h3, .benefit-card.featured p, .benefit-card.featured .icon { color: var(--white); }
.icon, .module-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 16px; color: var(--secondary); background: #fff1ec; font-weight: 950; }
.benefit-card p, .module-grid p, .commercial-card p { margin: 16px 0 0; color: inherit; }
.workflow, .modules, .screenshots { background: var(--light); }
.text-link { display: inline-flex; margin-top: 28px; color: var(--primary); font-weight: 950; }
.image-slot { position: relative; overflow: hidden; min-height: 350px; padding: 28px; border-radius: 34px; background: linear-gradient(135deg,rgba(0,146,158,.08),rgba(238,82,42,.08)), #fff; }
.image-label { display: inline-flex; margin-bottom: 24px; padding: 9px 13px; border-radius: 999px; color: var(--primary); background: rgba(0,146,158,.1); font-size: .78rem; font-weight: 950; }
.kanban-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 34px; }
.kanban-card { min-height: 172px; padding: 10px; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.kanban-card strong { display: block; margin-top: 12px; color: var(--dark); font-size: 0.8rem; }
.kanban-card small { display: block; margin-top: 12px; color: var(--muted); font-weight: 400; }
.status-dot { display: inline-flex; width: 14px; height: 14px; border-radius: 50%; }
.status-dot.secondary { background: #9aa4aa; } .status-dot.warning { background: #f0ad4e; } .status-dot.primary { background: #2774d9; } .status-dot.success { background: #34a853; }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.module-grid article { box-shadow: none; transition: transform .2s ease, box-shadow .2s ease; }
.module-grid article:hover { transform: translateY(-4px); box-shadow: var(--soft-shadow); }
.module-icon { color: var(--white); background: var(--primary); }
.large-slot { min-height: 500px; }
.fake-window { padding: 26px; border-radius: 26px; background: #fff; border: 1px solid var(--line); }
.line, .form-grid span { display: block; border-radius: 999px; background: #e8f0f1; }
.line { height: 16px; margin-bottom: 14px; }
.w80 { width: 80%; } .w60 { width: 60%; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.form-grid span { height: 58px; border-radius: 16px; }
.fake-table { display: grid; gap: 10px; }
.fake-table > div { display: grid; grid-template-columns: 1.4fr 1fr .7fr .7fr; gap: 10px; padding: 12px; border-radius: 14px; background: #f7fbfc; color: var(--dark); font-size: .9rem; }
.fake-table b { color: var(--primary); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--dark); font-weight: 780; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; color: var(--white); background: var(--primary); font-size: .8rem; }
.section-dark { color: rgba(255,255,255,.8); background: radial-gradient(circle at 80% 20%,rgba(238,82,42,.26),transparent 35%), linear-gradient(135deg,#172326,#064f57 58%,#09363b); }
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.api-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.api-tags span { padding: 10px 14px; border-radius: 999px; color: var(--white); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); font-weight: 850; }
.phone-mockup { width: min(100%,390px); margin-left: auto; padding: 20px; border-radius: 44px; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); }
.phone-screen { min-height: 540px; padding: 34px 24px; border-radius: 36px; color: var(--dark); background: #fff; }
.phone-screen h3 { color: var(--primary); }
.phone-screen p { margin: 12px 0 24px; color: var(--muted); font-weight: 750; }
.scan-box { display: grid; place-items: center; min-height: 150px; margin-bottom: 18px; border: 2px dashed rgba(0,146,158,.35); border-radius: 22px; color: var(--primary); font-weight: 950; background: #f4fcfd; }
.phone-screen button { width: 100%; min-height: 52px; margin-top: 20px; border: 0; border-radius: 999px; color: var(--white); background: var(--secondary); font-weight: 950; }
.commercial-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
.commercial-card { min-height: 260px; }
.commercial-card span { color: var(--secondary); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.commercial-card.orange { color: var(--white); background: linear-gradient(160deg,var(--secondary),#d63f1c); }
.commercial-card.orange h3, .commercial-card.orange span, .commercial-card.orange p { color: var(--white); }
.screenshot-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.screenshot-slot { display: grid; place-items: center; min-height: 230px; border: 2px dashed rgba(0,146,158,.28); border-radius: 26px; background: #fff; color: var(--primary); font-weight: 900; text-align: center; padding: 18px; }
.cta { padding-top: 40px; }
.cta-box { padding: clamp(34px,6vw,74px); border-radius: 38px; text-align: center; background: radial-gradient(circle at 10% 0%,rgba(238,82,42,.13),transparent 32%), radial-gradient(circle at 90% 0%,rgba(0,146,158,.16),transparent 34%), #fff; }
.cta-box h2, .cta-box p { margin-left: auto; margin-right: auto; }
.centered-actions { justify-content: center; }
.site-footer { padding: 34px 0; color: rgba(255,255,255,.72); background: #22292c; }
.footer-grid { grid-template-columns: 1fr auto; gap: 30px; }
.site-footer strong { color: #fff; font-size: 1.1rem; }
.site-footer p { max-width: 520px; margin: 8px 0 0; }

@media (max-width: 1080px) { .kpi-grid-mini, .pipeline, .kanban-row { grid-template-columns: repeat(2,1fr); } .benefit-grid, .screenshot-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 980px) { .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; } .nav-links { width: 100%; overflow-x: auto; padding-bottom: 6px; } .hero-grid, .workflow-grid, .split-grid, .warehouse-grid, .footer-grid { grid-template-columns: 1fr; } .hero-visual { min-height: 520px; } .module-grid, .commercial-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px) { .container { width: min(100% - 28px,1180px); } .section { padding: 68px 0; } .hero { padding-top: 70px; } .nav-links { gap: 14px; font-size: .86rem; } .hero-stats, .benefit-grid, .module-grid, .commercial-grid, .kanban-row, .pipeline, .kpi-grid-mini, .screenshot-grid { grid-template-columns: 1fr; } .hero-visual { min-height: auto; } .dashboard-card { margin: 0; } .phone-card { position: relative; right: auto; bottom: auto; margin: 22px auto 0; } .hero-actions { flex-direction: column; } .btn { width: 100%; } .phone-mockup { margin: 0 auto; } .fake-table > div { grid-template-columns: 1fr; } }
