:root {
    --bg: #07111f;
    --bg-soft: #0d1b2f;
    --surface: #11243b;
    --surface-2: #142b46;
    --text: #f4f8fb;
    --muted: #9fb1c7;
    --line: rgba(167, 186, 212, 0.16);
    --primary: #2dd4bf;
    --primary-2: #38bdf8;
    --accent: #a78bfa;
    --success: #34d399;
    --warning: #f59e0b;
    --danger: #fb7185;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 34rem),
        radial-gradient(circle at 80% 8%, rgba(56, 189, 248, 0.16), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.82);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-image {
    display: block;
    width: 118px;
    height: auto;
    filter: drop-shadow(0 12px 26px rgba(45, 212, 191, 0.16));
}

.footer .logo-image {
    width: 148px;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 650;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px 20px;
    border-top: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.96);
}

.mobile-link {
    padding: 14px 0;
    color: var(--muted);
    font-weight: 700;
}

.mobile-link.active {
    color: var(--primary);
}

.mobile-cta {
    padding-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #04212c;
    box-shadow: 0 16px 34px rgba(45, 212, 191, 0.22);
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: rgba(45, 212, 191, 0.5);
    background: rgba(45, 212, 191, 0.08);
}

.btn-large {
    min-height: 56px;
    padding: 15px 24px;
    font-size: 1rem;
}

.w-full {
    width: 100%;
}

.hero {
    position: relative;
    padding: 106px 0 76px;
}

.hero-inner {
    padding: 92px 0 58px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 54px;
    align-items: center;
}

.hero-content.centered {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(45, 212, 191, 0.26);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.09);
    color: #8ff4e8;
    font-size: 0.9rem;
    font-weight: 800;
}

.hero-title {
    max-width: 900px;
    font-size: clamp(2.55rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.hero-inner .hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 690px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.2rem;
}

.centered .hero-subtitle {
    margin-right: auto;
    margin-left: auto;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.centered .hero-ctas {
    justify-content: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.automation-panel,
.roi-card,
.info-box,
.contact-form-container {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(17, 36, 59, 0.92), rgba(13, 27, 47, 0.92));
    box-shadow: var(--shadow);
}

.automation-panel {
    overflow: hidden;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 0.88rem;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.12);
    animation: pulse 1.8s infinite;
}

.panel-body {
    padding: 24px;
}

.workflow-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.workflow-row:last-child {
    border-bottom: 0;
}

.workflow-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.11);
    color: var(--primary-2);
}

.workflow-title {
    color: var(--text);
    font-weight: 800;
}

.workflow-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.workflow-gain {
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 900;
    white-space: nowrap;
}

.panel-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 22px;
}

.panel-kpi {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.panel-kpi strong {
    display: block;
    color: var(--text);
    font-size: 1.55rem;
    line-height: 1;
}

.panel-kpi span {
    color: var(--muted);
    font-size: 0.83rem;
}

.section {
    padding: 82px 0;
}

.section.bg-light {
    background: linear-gradient(180deg, rgba(13, 27, 47, 0.66), rgba(7, 17, 31, 0));
}

.section-header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-header.left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(167, 139, 250, 0.13);
    color: #d7ccff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h2 {
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h3 {
    line-height: 1.2;
}

.section-subtitle {
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.08rem;
}

.grid-3,
.services-grid,
.usage-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.grid-2,
.why-grid,
.about-grid,
.contact-grid,
.simulator-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.card,
.service-card,
.service-detail-card,
.usage-card,
.testimonial-card,
.step,
.kpi-card,
.problem-card,
.mini-result {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 36, 59, 0.76);
    box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.service-detail-card,
.usage-card,
.testimonial-card,
.step,
.problem-card {
    padding: 26px;
}

.card:hover,
.service-card:hover,
.service-detail-card:hover,
.usage-card:hover {
    border-color: rgba(45, 212, 191, 0.42);
    transform: translateY(-4px);
}

.service-card,
.service-detail-card,
.usage-card,
.card {
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-icon,
.service-icon-large,
.problem-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 18px;
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary);
    font-size: 1.35rem;
}

.service-card h3,
.service-detail-card h3,
.usage-card h3,
.problem-card h3,
.step h3,
.card h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.28rem;
}

.service-card p,
.service-detail-card p,
.usage-card p,
.problem-card p,
.step p,
.card p,
.testimonial-text,
.about-grid p {
    color: var(--muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 900;
}

.service-benefits,
.why-list,
.check-list {
    list-style: none;
}

.service-benefits {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.service-benefits li,
.why-list li,
.check-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
}

.service-benefits li::before,
.check-list li::before {
    flex: 0 0 auto;
    color: var(--success);
    content: "✓";
    font-weight: 900;
}

.process-map {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
}

.architecture-diagram,
.infra-diagram {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

.architecture-diagram {
    grid-template-columns: 1fr 1.15fr 1fr;
}

.diagram-column,
.diagram-core,
.infra-zone {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 36, 59, 0.72);
    box-shadow: var(--shadow-soft);
}

.diagram-column,
.diagram-core {
    padding: 20px;
}

.diagram-label {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.diagram-node {
    display: grid;
    gap: 3px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.diagram-node:last-child {
    margin-bottom: 0;
}

.diagram-node i,
.infra-zone h3 i {
    color: var(--primary);
}

.diagram-node strong,
.core-ring strong {
    color: var(--text);
}

.diagram-node span,
.core-ring span,
.diagram-stack span {
    color: var(--muted);
    font-size: 0.9rem;
}

.diagram-core {
    display: grid;
    align-content: center;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(45, 212, 191, 0.14), transparent 65%),
        rgba(17, 36, 59, 0.82);
}

.core-ring {
    display: grid;
    gap: 8px;
    min-height: 230px;
    place-items: center;
    padding: 28px;
    border: 1px solid rgba(45, 212, 191, 0.28);
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.48);
}

.core-ring i {
    color: var(--primary-2);
    font-size: 2.2rem;
}

.diagram-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.diagram-stack span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
}

.infra-diagram {
    grid-template-columns: 1fr auto 1.1fr auto 1fr;
}

.infra-zone {
    padding: 22px;
}

.infra-zone.featured {
    border-color: rgba(45, 212, 191, 0.38);
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.12), rgba(17, 36, 59, 0.76));
}

.infra-zone h3 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.infra-item {
    padding: 12px 14px;
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-weight: 800;
}

.infra-bus {
    display: grid;
    min-width: 96px;
    align-content: center;
    justify-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
}

.infra-bus i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(45, 212, 191, 0.28);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(45, 212, 191, 0.08);
}

.problem-card.solution {
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.12), rgba(17, 36, 59, 0.76));
}

.solution-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    align-self: center;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-number {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary-2);
    font-weight: 950;
}

.kpi-grid,
.about-stats,
.result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kpi-card,
.mini-result {
    padding: 22px;
    text-align: left;
}

.kpi-value,
.big-savings,
.result-value,
.big-number {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-feature-settings: "tnum";
    font-weight: 950;
}

.kpi-value {
    font-size: 2.55rem;
    line-height: 1;
}

.kpi-label,
.mini-label,
.result-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.usage-result {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.result-item {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.result-value {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.usage-client,
.author-role,
.footer,
.footer a {
    color: var(--muted);
}

.stars {
    margin-bottom: 14px;
    color: #fde68a;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.author-avatar {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #07111f;
    font-weight: 950;
}

.author-name {
    color: var(--text);
    font-weight: 900;
}

.cta-teaser,
.final-cta {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 20% 0%, rgba(45, 212, 191, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(17, 36, 59, 0.86), rgba(8, 19, 34, 0.98));
}

.teaser-content,
.final-cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
    padding: 64px 0;
}

.final-cta-content {
    text-align: left;
}

.teaser-left p,
.final-cta-content p {
    margin: 14px 0 24px;
    color: var(--muted);
    font-size: 1.08rem;
}

.teaser-stat {
    padding: 34px;
    border: 1px solid rgba(45, 212, 191, 0.25);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.45);
    text-align: center;
}

.big-number {
    display: block;
    font-size: 4.6rem;
    line-height: 1;
}

.small-text {
    color: var(--muted);
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-title {
    margin-bottom: 18px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(17, 36, 59, 0.76);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    display: block;
}

.simulator-form,
.simulator-results {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 36, 59, 0.78);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.58);
    color: var(--text);
    padding: 13px 14px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(45, 212, 191, 0.55);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.08);
}

.slider {
    accent-color: var(--primary);
}

.value-display {
    margin-top: 8px;
    color: var(--primary);
    font-weight: 900;
}

.results-container {
    display: grid;
    gap: 20px;
}

.hidden {
    display: none;
}

.result-main {
    padding: 24px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: 20px;
    background: rgba(45, 212, 191, 0.07);
}

.big-savings {
    font-size: clamp(2.3rem, 7vw, 4.2rem);
    line-height: 1;
}

.roi-note,
.form-note {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-size: 0.92rem;
}

.form-note {
    margin-bottom: 18px;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.form-alert.success {
    border: 1px solid rgba(52, 211, 153, 0.38);
    background: rgba(52, 211, 153, 0.12);
    color: #b8f7dc;
}

.form-alert.error {
    border: 1px solid rgba(251, 113, 133, 0.42);
    background: rgba(251, 113, 133, 0.12);
    color: #fecdd3;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-container,
.info-box {
    padding: 28px;
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-method {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.contact-method i {
    color: var(--primary);
}

.method-title {
    color: var(--text);
    font-weight: 900;
}

.footer {
    padding: 54px 0 26px;
    background: #030a13;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 28px;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col a {
    display: block;
    margin-bottom: 9px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-desc {
    max-width: 330px;
    margin: 16px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.footer-legal {
    margin-top: 16px;
    color: #718096;
}

.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 36px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.75);
        opacity: 0.65;
    }
}

@media (max-width: 980px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid,
    .grid-2,
    .why-grid,
    .about-grid,
    .contact-grid,
    .simulator-wrapper,
    .teaser-content,
    .final-cta-content {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .services-grid,
    .usage-grid,
    .testimonials-grid,
    .steps-container,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-map {
        grid-template-columns: 1fr;
    }

    .architecture-diagram,
    .infra-diagram {
        grid-template-columns: 1fr;
    }

    .infra-bus {
        min-width: 0;
        padding: 4px 0;
    }

    .solution-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding-top: 70px;
    }

    .hero-ctas,
    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .grid-3,
    .services-grid,
    .usage-grid,
    .testimonials-grid,
    .steps-container,
    .footer-grid,
    .kpi-grid,
    .about-stats,
    .result-grid,
    .faq-grid,
    .form-row,
    .panel-kpis,
    .usage-result {
        grid-template-columns: 1fr;
    }

    .workflow-row {
        grid-template-columns: 42px 1fr;
    }

    .workflow-gain {
        grid-column: 1 / -1;
    }
}
