﻿* {
    box-sizing: border-box;
}
:root {
    --home-primary: #101827;
    --home-primary-light: #1f2937;
    --home-accent: #f59e0b;
    --home-accent-hover: #d97706;
    --home-background: #ffffff;
    --home-soft-background: #f8fafc;
    --home-text: #111827;
    --home-muted: #64748b;
    --home-border: #e2e8f0;
    --home-success: #16a34a;
    --home-danger: #dc2626;
    --home-container: 1200px;
}
html {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--home-background);
    color: var(--home-text);
    font-family:
        Arial,
        Tahoma,
        sans-serif;
}
body.menu-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input {
    font: inherit;
}
button {
    -webkit-tap-highlight-color: transparent;
}
.home-container {
    width: min(var(--home-container), 92%);
    margin-right: auto;
    margin-left: auto;
}
/* ==========================================================
   Header
========================================================== */
.home-header {
    height: 78px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
    z-index: 100;
}
.navigation {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.home-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--home-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: bold;
}
.logo-text strong {
    display: block;
    line-height: 1.1;
    font-size: 17px;
}
.logo-text small {
    display: block;
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 12px;
}
.home-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}
.home-navigation a {
    position: relative;
    color: #475569;
    font-size: 14px;
    font-weight: bold;
}
.home-navigation a::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: -8px;
    border-radius: 10px;
    background: var(--home-accent);
    transition: width 0.2s ease;
}
.home-navigation a:hover {
    color: var(--home-text);
}
.home-navigation a:hover::after {
    width: 100%;
}
.navigation-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.login-link {
    color: #475569;
    font-size: 14px;
    font-weight: bold;
}
.login-link:hover {
    color: var(--home-text);
}
.header-button {
    min-height: 43px;
    padding: 10px 18px;
    border-radius: 9px;
    background: var(--home-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.header-button:hover {
    background: var(--home-primary-light);
    transform: translateY(-1px);
}
.mobile-menu-button {
    width: 45px;
    height: 45px;
    padding: 10px;
    border: 1px solid var(--home-border);
    border-radius: 9px;
    background: #ffffff;
    display: none;
    cursor: pointer;
}
.mobile-menu-button span {
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--home-primary);
    display: block;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
/* ==========================================================
   Hero
========================================================== */
.hero-section {
    min-height: 690px;
    position: relative;
    padding: 95px 0 90px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}
.hero-decoration-one {
    width: 420px;
    height: 420px;
    top: -220px;
    right: -170px;
    background: rgba(245, 158, 11, 0.09);
}
.hero-decoration-two {
    width: 480px;
    height: 480px;
    bottom: -300px;
    left: -180px;
    background: rgba(15, 23, 42, 0.06);
}
.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);
    align-items: center;
    gap: 65px;
    z-index: 2;
}
.hero-content {
    max-width: 590px;
}
.hero-badge {
    width: fit-content;
    padding: 8px 13px;
    margin-bottom: 22px;
    border: 1px solid #fde68a;
    border-radius: 999px;
    background: #fffbeb;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: bold;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--home-accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}
.hero-content h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 69px);
    line-height: 1.16;
    letter-spacing: -2px;
}
.hero-content h1 span {
    color: var(--home-accent-hover);
    display: block;
}
.hero-description {
    max-width: 570px;
    margin: 25px 0 0;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.9;
}
.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.primary-home-button,
.secondary-home-button {
    min-height: 51px;
    padding: 12px 22px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: bold;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
.primary-home-button {
    background: var(--home-primary);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}
.primary-home-button:hover {
    background: var(--home-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.22);
}
.secondary-home-button {
    border: 1px solid var(--home-border);
    background: #ffffff;
    color: var(--home-text);
}
.secondary-home-button:hover {
    background: var(--home-soft-background);
    transform: translateY(-2px);
}
.hero-trust {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
}
.trust-item {
    color: #475569;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
}
.trust-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
/* ==========================================================
   Dashboard preview
========================================================== */
.hero-preview {
    position: relative;
}
.hero-preview::before {
    content: "";
    position: absolute;
    inset: 12% 5% -8%;
    border-radius: 40px;
    background: rgba(245, 158, 11, 0.18);
    filter: blur(50px);
    z-index: -1;
}
.preview-window {
    overflow: hidden;
    border: 1px solid #dbe2ea;
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 35px 80px rgba(15, 23, 42, 0.18),
        0 5px 20px rgba(15, 23, 42, 0.08);
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}
.preview-topbar {
    height: 43px;
    padding: 0 15px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}
.preview-window-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.preview-window-buttons span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}
.preview-window-buttons span:first-child {
    background: #f87171;
}
.preview-window-buttons span:nth-child(2) {
    background: #fbbf24;
}
.preview-window-buttons span:nth-child(3) {
    background: #4ade80;
}
.preview-address {
    width: 45%;
    height: 22px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #e9eef4;
    color: #94a3b8;
    text-align: center;
    font-size: 9px;
}
.preview-body {
    min-height: 420px;
    display: flex;
    direction: rtl;
}
.preview-sidebar {
    width: 145px;
    flex-shrink: 0;
    padding: 18px 11px;
    background: #111827;
    color: #ffffff;
}
.preview-brand {
    padding: 0 7px 17px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.preview-brand span {
    width: 27px;
    height: 27px;
    border-radius: 7px;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.preview-brand strong {
    font-size: 10px;
}
.preview-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.preview-menu-item {
    min-height: 34px;
    padding: 7px 8px;
    border-radius: 6px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 8px;
}
.preview-menu-item span {
    width: 14px;
    text-align: center;
    font-size: 10px;
}
.preview-menu-item.active {
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
}
.preview-content {
    min-width: 0;
    flex: 1;
    padding: 18px;
    background: #f1f5f9;
}
.preview-heading {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.preview-heading strong {
    display: block;
    font-size: 12px;
}
.preview-heading small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 8px;
}
.preview-avatar {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.preview-cards {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}
.preview-card {
    min-height: 105px;
    padding: 11px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    background: #ffffff;
}
.preview-card-icon {
    width: 25px;
    height: 25px;
    margin-bottom: 10px;
    border-radius: 7px;
    background: #f1f5f9;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.preview-card small {
    color: #94a3b8;
    display: block;
    font-size: 7px;
}
.preview-card strong {
    margin: 5px 0;
    display: block;
    font-size: 12px;
}
.preview-card .positive-text,
.preview-card .neutral-text,
.preview-card .danger-text {
    font-size: 7px;
}
.positive-text {
    color: #16a34a;
}
.neutral-text {
    color: #64748b;
}
.danger-text {
    color: #dc2626;
}
.preview-chart {
    height: 205px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    background: #ffffff;
}
.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chart-header strong {
    font-size: 10px;
}
.chart-header small {
    color: #94a3b8;
    font-size: 7px;
}
.chart-bars {
    height: 125px;
    padding-top: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 7px;
}
.chart-bars span {
    width: 8%;
    border-radius: 4px 4px 0 0;
    background:
        linear-gradient(
            180deg,
            #f59e0b,
            #fbbf24
        );
}
.chart-days {
    padding-top: 8px;
    color: #94a3b8;
    display: flex;
    justify-content: space-around;
    font-size: 7px;
}
/* ==========================================================
   Statistics
========================================================== */
.statistics-section {
    padding: 34px 0;
    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
    background: #ffffff;
}
.statistics-grid {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;
    align-items: center;
}
.statistic-item {
    text-align: center;
}
.statistic-item strong {
    margin-bottom: 5px;
    color: var(--home-primary);
    display: block;
    font-size: 25px;
}
.statistic-item span {
    color: var(--home-muted);
    font-size: 13px;
}
.statistic-separator {
    width: 1px;
    height: 42px;
    background: var(--home-border);
}
/* ==========================================================
   Shared headings
========================================================== */
.features-section,
.workflow-section,
.about-section {
    padding: 100px 0;
}
.features-section {
    background: var(--home-soft-background);
}
.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}
.section-label {
    margin-bottom: 13px;
    color: var(--home-accent-hover);
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.section-heading h2,
.workflow-content h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.3;
}
.section-heading p {
    margin: 18px 0 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.8;
}
/* ==========================================================
   Features
========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}
.feature-card {
    min-height: 260px;
    position: relative;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 15px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.feature-card:hover {
    border-color: #fcd34d;
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 13px;
    background: #fffbeb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.feature-card h3 {
    margin: 0;
    font-size: 19px;
}
.feature-card p {
    margin: 13px 0 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.8;
}
.feature-number {
    position: absolute;
    left: 21px;
    bottom: 15px;
    color: #e2e8f0;
    font-size: 35px;
    font-weight: bold;
}
/* ==========================================================
   Workflow
========================================================== */
.workflow-section {
    background: #ffffff;
}
.workflow-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 85px;
}
.workflow-description {
    margin: 18px 0 35px;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.9;
}
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.workflow-step {
    display: flex;
    gap: 16px;
}
.step-number {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--home-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.workflow-step h3 {
    margin: 2px 0 6px;
    font-size: 17px;
}
.workflow-step p {
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.7;
}
.workflow-visual {
    position: relative;
}
.workflow-visual::before {
    content: "";
    width: 75%;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 12%;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    filter: blur(45px);
    z-index: 0;
}
.workflow-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 25px 65px rgba(15, 23, 42, 0.12);
    z-index: 1;
}
.panel-header {
    padding: 22px;
    border-bottom: 1px solid var(--home-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.panel-header small {
    margin-bottom: 4px;
    color: var(--home-muted);
    display: block;
    font-size: 12px;
}
.panel-header strong {
    font-size: 17px;
}
.online-status {
    padding: 7px 11px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: bold;
}
.operation-list {
    padding: 8px 22px;
}
.operation-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--home-border);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
}
.operation-item:last-child {
    border-bottom: 0;
}
.operation-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.success-operation {
    background: #dcfce7;
    color: #166534;
}
.primary-operation {
    background: #e0e7ff;
    color: #3730a3;
}
.warning-operation {
    background: #fef3c7;
    color: #92400e;
}
.operation-item strong {
    display: block;
    font-size: 14px;
}
.operation-item small {
    margin-top: 5px;
    color: var(--home-muted);
    display: block;
    font-size: 12px;
}
.operation-item time {
    color: var(--home-muted);
    font-size: 11px;
}
.panel-footer {
    padding: 15px 22px;
    border-top: 1px solid var(--home-border);
    background: var(--home-soft-background);
    color: var(--home-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
}
.sync-text {
    color: var(--home-success);
}
/* ==========================================================
   About
========================================================== */
.about-section {
    padding-top: 20px;
    background: #ffffff;
}
.about-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.about-card {
    padding: 29px;
    border: 1px solid var(--home-border);
    border-radius: 15px;
    text-align: center;
}
.about-icon {
    margin-bottom: 17px;
    display: block;
    font-size: 31px;
}
.about-card h3 {
    margin: 0;
    font-size: 18px;
}
.about-card p {
    margin: 12px 0 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.8;
}
/* ==========================================================
   CTA
========================================================== */
.call-to-action-section {
    padding: 20px 0 100px;
}
.call-to-action {
    padding: 55px 58px;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}
.call-to-action::before {
    content: "";
    width: 280px;
    height: 280px;
    position: absolute;
    top: -150px;
    left: -60px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.14);
}
.call-to-action > * {
    position: relative;
    z-index: 2;
}
.cta-label {
    margin-bottom: 12px;
    color: #fbbf24;
    display: block;
    font-size: 13px;
    font-weight: bold;
}
.call-to-action h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.35;
}
.call-to-action p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #cbd5e1;
    line-height: 1.8;
}
.cta-button {
    min-width: 160px;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 10px;
    background: var(--home-accent);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.cta-button:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}
/* ==========================================================
   Footer
========================================================== */
.home-footer {
    padding: 28px 0;
    border-top: 1px solid var(--home-border);
    background: var(--home-soft-background);
}
.footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.footer-logo .logo-icon {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    font-size: 20px;
}
.footer-logo strong {
    display: block;
    font-size: 14px;
}
.footer-logo small {
    margin-top: 3px;
    color: var(--home-muted);
    display: block;
    font-size: 11px;
}
.footer-layout p {
    color: var(--home-muted);
    font-size: 13px;
}
.footer-login {
    color: var(--home-text);
    font-size: 13px;
    font-weight: bold;
}
.footer-login:hover {
    color: var(--home-accent-hover);
}
/* ==========================================================
   Responsive
========================================================== */
@media (max-width: 1050px) {
    .home-navigation {
        gap: 18px;
    }
    .hero-layout {
        gap: 35px;
    }
    .hero-content h1 {
        font-size: 47px;
    }
    .workflow-layout {
        gap: 45px;
    }
}
@media (max-width: 900px) {
    .home-header {
        height: 70px;
    }
    .mobile-menu-button {
        display: block;
        order: 3;
    }
    .home-navigation {
        width: 100%;
        max-height: 0;
        position: fixed;
        top: 70px;
        right: 0;
        padding: 0 4%;
        overflow: hidden;
        border-bottom: 1px solid var(--home-border);
        background: #ffffff;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        transition:
            max-height 0.3s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
    }
    .home-navigation.navigation-open {
        max-height: 350px;
        padding-top: 15px;
        padding-bottom: 15px;
        opacity: 1;
    }
    .home-navigation a {
        padding: 13px;
        border-bottom: 1px solid #f1f5f9;
    }
    .home-navigation a:last-child {
        border-bottom: 0;
    }
    .home-navigation a::after {
        display: none;
    }
    .navigation-actions {
        margin-right: auto;
    }
    .login-link {
        display: none;
    }
    .mobile-menu-button.menu-active span:first-child {
        transform: translateY(6px) rotate(45deg);
    }
    .mobile-menu-button.menu-active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-button.menu-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .hero-section {
        padding-top: 70px;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-badge {
        margin-right: auto;
        margin-left: auto;
    }
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }
    .hero-preview {
        width: min(700px, 100%);
        margin: 0 auto;
    }
    .preview-window {
        transform: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .workflow-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .workflow-content {
        max-width: 720px;
    }
    .workflow-visual {
        width: min(680px, 100%);
        margin: 0 auto;
    }
}
@media (max-width: 700px) {
    .hero-content h1 {
        font-size: 41px;
        letter-spacing: -1px;
    }
    .statistics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 27px 15px;
    }
    .statistic-separator {
        display: none;
    }
    .features-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }
    .call-to-action {
        padding: 40px 27px;
        align-items: stretch;
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
    }
    .footer-layout {
        text-align: center;
        flex-direction: column;
    }
}
@media (max-width: 540px) {
    .home-container {
        width: 90%;
    }
    .logo-text {
        display: none;
    }
    .header-button {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 12px;
    }
    .hero-section {
        min-height: auto;
        padding: 55px 0 70px;
    }
    .hero-content h1 {
        font-size: 35px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .primary-home-button,
    .secondary-home-button {
        width: 100%;
    }
    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
    }
    .preview-body {
        min-height: 340px;
    }
    .preview-sidebar {
        width: 70px;
        padding: 13px 6px;
    }
    .preview-brand {
        justify-content: center;
    }
    .preview-brand strong {
        display: none;
    }
    .preview-menu-item {
        justify-content: center;
    }
    .preview-menu-item {
        font-size: 0;
    }
    .preview-menu-item span {
        font-size: 11px;
    }
    .preview-content {
        padding: 11px;
    }
    .preview-cards {
        grid-template-columns: 1fr;
    }
    .preview-card {
        min-height: 70px;
    }
    .preview-card-icon {
        margin-bottom: 5px;
    }
    .preview-chart {
        height: 160px;
    }
    .chart-bars {
        height: 90px;
    }
    .features-section,
    .workflow-section,
    .about-section {
        padding: 70px 0;
    }
    .feature-card {
        min-height: 245px;
    }
    .operation-item {
        grid-template-columns: auto 1fr;
    }
    .operation-item time {
        display: none;
    }
    .panel-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .call-to-action-section {
        padding-bottom: 70px;
    }
}
