:root {
    --blue: #003E5A;
    --blue-dark:#002F46;
    --green: #00B084;
    --cream: #FDF7C6;
    --white: #FFFFFF;
    --gray: #292929;
    --soft-gray: #F7F8FA;
    --border: #E6E8EB;
    --text-muted: #6B7280;
    --shadow-soft: 0 24px 70px rgba(0, 62, 90, 0.14);
    --background-light:#F8FBFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gray);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.navbar {
    height: 80px;
    padding: 0 22px;
    border-radius: 24px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 50px rgba(0,62,90,0.18);
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
}

.nav-menu a {
    color: var(--white);
    transition: 0.25s ease;
}

.nav-menu a:hover {
    color: var(--cream);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--green);
    color: var(--white) !important;
    box-shadow: 0 14px 35px rgba(0,176,132,0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0,176,132,0.35);
}

.btn-secondary {
    color: var(--blue);
    border: 1px solid rgba(0,62,90,0.22);
    background: rgba(255,255,255,0.75);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(0,176,132,0.16), transparent 28%),
        radial-gradient(circle at 85% 30%, rgba(0,62,90,0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    z-index: -2;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,62,90,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,62,90,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(253,247,198,0.75);
    border: 1px solid rgba(0,62,90,0.12);
    font-weight: 800;
    font-size: 14px;
}

.hero h1 {
    max-width: 680px;
    color: var(--blue);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

.hero p {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 14px 24px;
    color: var(--gray);
    font-weight: 700;
    font-size: 15px;
}

.trust-list span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.check-icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0,176,132,0.12);
    color: var(--green);
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
}

/* Dashboard Visual */

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-dashboard {
    position: relative;
    width: 500px;
    min-height: 340px;
    margin-left: auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    border-radius: 30px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,62,90,.12);
    box-shadow: 0 30px 90px rgba(0,62,90,.16);
    overflow: hidden;
    animation: floatMain 6s ease-in-out infinite;
    transform: translateY(-35px);
}

.dashboard-sidebar {
    padding: 18px 14px;
    background: linear-gradient(180deg, var(--blue), #002f46);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
}

.sidebar-logo {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--cream), var(--green));
}

.dashboard-sidebar span {
    padding: 9px 10px;
    border-radius: 11px;
    opacity: .9;
}

.dashboard-sidebar span:first-of-type {
    background: rgba(255,255,255,.12);
}

.dashboard-main {
    padding: 18px;
}

.dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dashboard-head small {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 11px;
}

.dashboard-head h3 {
    color: var(--blue);
    font-size: 20px;
    margin-top: 4px;
}

.dashboard-date {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--soft-gray);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.dashboard-kpis div {
    padding: 12px;
    border-radius: 18px;
    background: var(--soft-gray);
}

.dashboard-kpis small {
    display: block;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
}

.dashboard-kpis strong {
    display: block;
    color: var(--blue);
    font-size: 18px;
    margin: 6px 0 3px;
}

.dashboard-kpis span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
}

.dashboard-chart {
    position: relative;
    height: 105px;
    margin-bottom: 14px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(0,176,132,.08), rgba(0,62,90,.03)),
        var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.dashboard-chart::before {
    content: "";
    position: absolute;
    inset: 18px;
    background-image:
        linear-gradient(rgba(0,62,90,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,62,90,.06) 1px, transparent 1px);
    background-size: 38px 28px;
}

.dashboard-chart svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 14px 18px;
}

.chart-area {
    fill: rgba(0,176,132,.10);
}

.chart-path {
    fill: none;
    stroke: url(#chartGradient);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-dot {
    fill: var(--green);
    stroke: rgba(255,255,255,.95);
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(0,176,132,.45));
}

.dashboard-activity {
    padding: 12px;
    border-radius: 20px;
    background: var(--soft-gray);
}

.activity-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.activity-head strong {
    color: var(--blue);
    font-size: 13px;
}

.activity-head span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0,176,132,.12);
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
}

.activity-item {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid rgba(0,62,90,.08);
}

.activity-item i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(0,176,132,.12);
}

.activity-item strong {
    display: block;
    color: var(--blue);
    font-size: 12px;
}

.activity-item small {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
}

.activity-item > span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
}

/* Animations */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-dashboard.reveal,
.hero-dashboard {
    will-change: transform;
}

@keyframes floatMain {
    0%, 100% {
        transform: translateY(-35px);
    }

    50% {
        transform: translateY(-47px);
    }
}

/* Responsive */

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

@media (max-width: 1100px) {
    .hero-dashboard {
        width: 500px;
        grid-template-columns: 120px 1fr;
    }

    .dashboard-kpis {
        grid-template-columns: 1fr;
    }

    .dashboard-chart {
        height: 105px;
    }
}

@media (max-width: 900px) {
    .navbar {
        height: 74px;
    }

    .brand img {
        width: 130px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 98px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        border-radius: 22px;
        background: var(--blue);
        box-shadow: var(--shadow-soft);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-list {
        justify-content: center;
        grid-template-columns: repeat(2, max-content);
    }

    .hero-visual {
        min-height: auto;
        margin-top: 30px;
    }

    .hero-dashboard {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .site-header {
        top: 10px;
    }

    .navbar {
        border-radius: 18px;
        height: 68px;
    }

    .brand img {
        width: 115px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 52px);
        letter-spacing: -0.05em;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-list {
        grid-template-columns: 1fr;
        text-align: left;
        width: fit-content;
        margin: 0 auto;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero h1 {
        font-size: 40px;
    }
}

/* Shared Sections */

.section-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    padding: 9px 15px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(253,247,198,.78);
    border: 1px solid rgba(0,62,90,.12);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.section-header h2 {
    color: var(--blue);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Business Section */

.business-section {
    padding: 110px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.business-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,62,90,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,62,90,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 14%,
        black 86%,
        transparent
    );
    pointer-events: none;
}


.business-section .container {
    position: relative;
    z-index: 2;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.business-card {
    position: relative;
    padding: 28px;
    min-height: 250px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(0,62,90,.06);
    overflow: hidden;
    transition: .35s ease;
}

.business-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s ease;
}

.business-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,176,132,.35);
    box-shadow: 0 28px 70px rgba(0,62,90,.12);
}

.business-card:hover::after {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(0,62,90,.05);
    color: var(--blue);
    border: 1px solid rgba(0,62,90,.08);
    transition: .35s ease;
}

.icon-wrapper i {
    font-size: 30px;
}

.business-card:hover .icon-wrapper {
    background: rgba(0,176,132,.12);
    color: var(--green);
    transform: translateY(-3px);
}

.card-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.business-card h3 {
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.business-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.business-card small {
    display: block;
    padding-top: 16px;
    border-top: 1px solid rgba(0,62,90,.08);
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

/* Business Responsive */

@media (max-width: 900px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-section {
        padding: 90px 0;
    }
}

@media (max-width: 640px) {
    .business-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header p {
        font-size: 16px;
    }

    .business-card {
        padding: 24px;
        min-height: auto;
    }
}

/* Solutions Section */

.solutions-section {
    padding: 120px 0;
    background:
        linear-gradient(180deg, #fff 0%, rgba(253,247,198,.28) 48%, #fff 100%);
    overflow: hidden;
}

.solutions-list {
    display: grid;
    gap: 54px;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding: 46px;
    border-radius: 34px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(0,62,90,.10);
    box-shadow: 0 24px 70px rgba(0,62,90,.08);
}

.solution-item.reverse .solution-content {
    order: 2;
}

.solution-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.solution-content h3 {
    color: var(--blue);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.solution-content p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-content ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.solution-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-weight: 700;
    font-size: 15px;
}

.solution-content li i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0,176,132,.12);
    color: var(--green);
}

/* Visual Base */

.solution-visual {
    min-height: 320px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid rgba(0,62,90,.12);
    box-shadow: 0 26px 70px rgba(0,62,90,.12);
    overflow: hidden;
}

/* Browser Preview */

.browser-bar {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    border-bottom: 1px solid var(--border);
}

.browser-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--green);
    opacity: .65;
}

.browser-body {
    padding: 34px;
}

.mini-badge {
    width: 140px;
    height: 24px;
    border-radius: 999px;
    background: rgba(253,247,198,.95);
    margin-bottom: 22px;
}

.mini-title {
    width: 78%;
    height: 34px;
    border-radius: 999px;
    background: var(--blue);
    margin-bottom: 16px;
}

.mini-text {
    width: 90%;
    height: 70px;
    border-radius: 18px;
    background: var(--soft-gray);
    margin-bottom: 24px;
}

.mini-actions {
    display: flex;
    gap: 12px;
}

.mini-actions span {
    width: 120px;
    height: 42px;
    border-radius: 14px;
    background: var(--green);
}

.mini-actions span:last-child {
    background: var(--soft-gray);
}

/* App Preview */

.app-preview {
    display: grid;
    grid-template-columns: 90px 1fr;
}

.app-sidebar {
    background: linear-gradient(180deg, var(--blue), #002f46);
}

.app-content {
    padding: 28px;
}

.app-content > span {
    display: block;
    width: 180px;
    height: 28px;
    border-radius: 999px;
    background: var(--blue);
    margin-bottom: 22px;
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.app-cards i {
    height: 78px;
    border-radius: 18px;
    background: var(--soft-gray);
}

.app-chart {
    height: 130px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0,62,90,.95), rgba(0,176,132,.88));
}

/* Flow Preview */

.flow-preview {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 34px;
}

.flow-preview div {
    padding: 16px 20px;
    border-radius: 18px;
    background: var(--soft-gray);
    color: var(--blue);
    font-weight: 900;
    text-align: center;
}

.flow-preview span {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(var(--blue), var(--green));
}

/* Chat Preview */

.chat-preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 34px;
}

.chat-message {
    width: fit-content;
    max-width: 82%;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
}

.chat-message.client {
    background: var(--soft-gray);
    color: var(--blue);
}

.chat-message.bot {
    margin-left: auto;
    background: var(--blue);
    color: var(--white);
}

.chat-input {
    height: 44px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--soft-gray);
}

/* Responsive Solutions */

@media (max-width: 900px) {
    .solutions-section {
        padding: 90px 0;
    }

    .solution-item,
    .solution-item.reverse {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 34px;
    }

    .solution-item.reverse .solution-content {
        order: initial;
    }

    .solution-visual {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .solution-item {
        padding: 26px;
        border-radius: 28px;
    }

    .solution-visual {
        display: none;
    }
}

/* Products Section */

.products-section {
    position: relative;
    padding: 130px 0;
    background: linear-gradient(180deg, var(--blue), #002d42);
    overflow: hidden;
}

.products-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,176,132,.22), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(253,247,198,.12), transparent 30%);
    pointer-events: none;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-header h2 {
    color: var(--white);
}

.products-header p {
    color: rgba(255,255,255,.72);
}

.section-badge.dark {
    background: rgba(253,247,198,.12);
    color: var(--cream);
    border-color: rgba(253,247,198,.18);
}

.product-showcase {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 70px;
    padding: 54px;
    border-radius: 38px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 34px 90px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
}

.product-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.product-content h3 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 22px;
}

.product-content p {
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.product-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 800;
}

.product-features i {
    color: var(--green);
}

/* POS Preview */

.product-visual {
    position: relative;
}

.pos-window {
    display: grid;
    grid-template-columns: 96px 1fr;
    min-height: 410px;
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.28);
    transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
    transition: .45s ease;
}

.product-showcase:hover .pos-window {
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-8px);
}

.pos-sidebar {
    padding: 24px 18px;
    background: linear-gradient(180deg, #002f46, var(--blue));
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pos-logo {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cream), var(--green));
}

.pos-sidebar span {
    height: 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
}

.pos-sidebar span.active {
    background: var(--green);
}

.pos-main {
    padding: 28px;
}

.pos-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pos-head small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
}

.pos-head strong {
    display: block;
    margin-top: 5px;
    color: var(--blue);
    font-size: 26px;
    letter-spacing: -0.04em;
}

.pos-head > span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft-gray);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.pos-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.pos-kpis div {
    padding: 16px;
    border-radius: 20px;
    background: var(--soft-gray);
}

.pos-kpis small {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 900;
}

.pos-kpis strong {
    display: block;
    margin-top: 8px;
    color: var(--blue);
    font-size: 21px;
}

.pos-content-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}

.pos-chart {
    height: 170px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0,62,90,.96), rgba(0,176,132,.85));
}

.pos-chart span {
    flex: 1;
    border-radius: 12px;
    background: rgba(255,255,255,.72);
}

.pos-chart span:nth-child(1) { height: 42%; }
.pos-chart span:nth-child(2) { height: 68%; }
.pos-chart span:nth-child(3) { height: 52%; }
.pos-chart span:nth-child(4) { height: 86%; }

.pos-list {
    display: grid;
    gap: 12px;
}

.pos-list span {
    border-radius: 16px;
    background: var(--soft-gray);
}

/* Products Responsive */

@media (max-width: 900px) {
    .products-section {
        padding: 100px 0;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 38px;
    }

    .product-content {
        text-align: center;
    }

    .product-features {
        justify-content: center;
    }

    .pos-window {
        max-width: 620px;
        margin: 0 auto;
        transform: none;
    }

    .product-showcase:hover .pos-window {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .product-showcase {
        padding: 28px;
        border-radius: 30px;
    }

    .pos-window {
        grid-template-columns: 1fr;
        min-height: auto;
        transform: none;
    }

    .pos-sidebar {
        display: none;
    }

    .pos-kpis,
    .pos-content-grid {
        grid-template-columns: 1fr;
    }

    .pos-chart {
        height: 130px;
    }
}

/* PandaCloud Restaurant */

.restaurant-showcase {
    margin-top: 70px;
}

.restaurant-window {
    min-height: 430px;
    border-radius: 34px;
    background: #003852;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.28);
    transform: perspective(1200px) rotateY(7deg) rotateX(3deg);
    transition: .45s ease;
}

.restaurant-showcase:hover .restaurant-window {
    transform: perspective(1200px) rotateY(3deg) rotateX(1deg) translateY(-8px);
}

.restaurant-topbar {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: inset 0 -1px rgba(255,255,255,.08);
}

.restaurant-topbar small {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 900;
}

.restaurant-topbar strong {
    display: block;
    margin-top: 5px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.restaurant-topbar > span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(183,255,150,.14);
    color: #B7FF96;
    font-size: 12px;
    font-weight: 900;
}

.restaurant-board {
    border-top:1px solid rgba(0,62,90,.06);
    padding: 28px;
    display: grid;
    gap: 18px;
    background: #F8FBFC;
}

.order-card {
    padding: 18px;
    border-radius: 22px;

    background: #FFFFFF;

    border: 1px solid rgba(0,62,90,.08);

    color: var(--blue);

    box-shadow: 0 10px 24px rgba(0,62,90,.06);

    transition: .3s ease;
}

.order-card.active{
    border-color: rgba(0,176,132,.35);

    box-shadow:
        0 12px 30px rgba(0,176,132,.12);
}

.order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.order-head strong{
    font-size:19px;
    font-weight:800;
    letter-spacing:-.02em;
    color:var(--blue);
}

.order-head span{
    display:inline-flex;
    align-items:center;
    padding:5px 10px;
    border-radius:999px;
    background:#F3F6F8;
    color:var(--blue);
    font-weight:800;
    font-size:11px;
}

.order-status{
    display:inline-flex;
    align-items:center;
    padding:7px 12px;
    border-radius:999px;
    background:#FFF6D8;
    color:#D18B00;
    font-size:11px;
    font-weight:800;
}

.order-status.ready{
    background:#E8FFF3;
    color:var(--green);
}

.restaurant-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.restaurant-actions div{
    padding:16px;
    border-radius:20px;
    background:#FFFFFF;
    color:var(--blue);
    border:1px solid rgba(0,62,90,.08);
    box-shadow:0 10px 24px rgba(0,62,90,.05);
    transition:.3s ease;
    text-align:center;
}

.restaurant-actions div:hover{
    transform:translateY(-4px);
    border-color:rgba(0,176,132,.35);
}

.restaurant-actions i {
    display: block;
    margin-bottom: 8px;
    color: #B7FF96;
    font-size: 26px;
}

.restaurant-actions span {
    font-size: 12px;
    font-weight: 900;
}

.restaurant-features i {
    color: #B7FF96;
}

/* Restaurant Responsive */

@media (max-width: 900px) {
    .restaurant-window {
        max-width: 620px;
        margin: 0 auto;
        transform: none;
    }

    .restaurant-showcase:hover .restaurant-window {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .restaurant-window {
        min-height: auto;
        transform: none;
    }

    .restaurant-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .restaurant-board {
        padding: 22px;
    }

    .restaurant-actions {
        grid-template-columns: 1fr;
    }
}

.order-items {
    display: grid;
    gap: 12px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.food-thumb {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

/* Hamburguesa CSS */

.food-thumb.burger::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 11px;
    height: 10px;
    border-radius: 12px 12px 6px 6px;
    background: #E5E200;
}

.food-thumb.burger::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 24px;
    height: 12px;
    border-radius: 4px 4px 10px 10px;
    background:
        linear-gradient(
            to bottom,
            #B7FF96 0 35%,
            #003852 35% 65%,
            #E5E200 65% 100%
        );
}

/* Papas CSS */

.food-thumb.fries::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 9px;
    width: 5px;
    height: 22px;
    border-radius: 999px;
    background: #E5E200;
    box-shadow:
        8px -3px 0 #E5E200,
        16px 1px 0 #E5E200;
}

.food-thumb.fries::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 9px;
    height: 17px;
    border-radius: 5px 5px 10px 10px;
    background: #F08700;
}

/* Bebida CSS */

.food-thumb.drink::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 10px;
    width: 17px;
    height: 27px;
    border-radius: 5px 5px 9px 9px;
    background: linear-gradient(180deg, #B7FF96, #00B084);
}

.food-thumb.drink::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 5px;
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: #E5E200;
    transform: rotate(16deg);
}

/* Pizza CSS */

.food-thumb.pizza::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 9px;
    width: 24px;
    height: 24px;
    background: #E5E200;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    border-radius: 4px;
}

.food-thumb.pizza::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F08700;
    box-shadow:
        8px 3px 0 #F08700,
        3px 10px 0 #00B084;
}

.order-info strong {
    display: block;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.2;
}

.order-info small{
    color:var(--green);
    font-weight:800;
    opacity:.85;
}

/* ============================= */
/* WHY FAL-LEZ SECTION */
/* ============================= */

.why-section {
    padding: 110px 20px;
    background:
        radial-gradient(circle at top left, rgba(0, 176, 132, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.why-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 62, 90, 0.10);
    box-shadow: 0 22px 60px rgba(0, 62, 90, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 176, 132, 0.10), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 176, 132, 0.28);
    box-shadow: 0 30px 80px rgba(0, 62, 90, 0.13);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    background: linear-gradient(135deg, #003e5a, #00b084);
    box-shadow: 0 14px 30px rgba(0, 176, 132, 0.24);
}

.why-icon i {
    font-size: 30px;
    color: #ffffff;
}

.why-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 1.18rem;
    font-weight: 800;
    color: #003e5a;
    letter-spacing: -0.02em;
}

.why-card p {
    position: relative;
    z-index: 1;
    font-size: 0.96rem;
    line-height: 1.75;
    color: rgba(38, 38, 38, 0.72);
}

/* Responsive */
@media (max-width: 1050px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: 80px 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 42px;
    }

    .why-card {
        padding: 30px 24px;
    }
}

/* ============================= */
/* PROCESS SECTION */
/* ============================= */

.process-section {
    position: relative;
    padding: 110px 20px;
    background:
        radial-gradient(circle at top right, rgba(0, 62, 90, 0.10), transparent 34%),
        linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
    overflow: hidden;
}

.process-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 58px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 176, 132, 0.45), transparent);
}

.process-card {
    position: relative;
    padding: 34px 26px 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 62, 90, 0.10);
    box-shadow: 0 22px 60px rgba(0, 62, 90, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 176, 132, 0.28);
    box-shadow: 0 30px 80px rgba(0, 62, 90, 0.13);
}

.process-number {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #003e5a, #00b084);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 34px rgba(0, 176, 132, 0.25);
}

.process-card h3 {
    margin-bottom: 14px;
    font-size: 1.16rem;
    font-weight: 800;
    color: #003e5a;
    letter-spacing: -0.02em;
}

.process-card p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: rgba(38, 38, 38, 0.72);
}

/* Responsive */
@media (max-width: 1050px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-section {
        padding: 80px 18px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 42px;
    }

    .process-card {
        padding: 30px 24px;
    }
}

/*======================================
TECNOLOGÍAS
======================================*/

.tech-section{
    position:relative;
    overflow:hidden;
    padding:120px 20px;
    background:
    radial-gradient(circle at 15% 20%,rgba(0,176,132,.12),transparent 30%),
    radial-gradient(circle at 85% 80%,rgba(0,62,90,.08),transparent 35%),
    linear-gradient(180deg,#ffffff,#f7fbfa);
}

.tech-container{
    max-width:1200px;
    margin:auto;
}

.tech-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.tech-card{
    position:relative;
    height:180px;
    border-radius:28px;
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(18px);
    border:1px solid rgba(0,62,90,.10);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    transition:.45s;
    box-shadow:
    0 20px 45px rgba(0,62,90,.08);
}

.tech-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(140deg,
    rgba(0,176,132,.15),
    transparent 55%);
    opacity:0;
    transition:.45s;
}

.tech-card:hover{
    transform:
    translateY(-10px);
    border-color:rgba(0,176,132,.30);
    box-shadow:
    0 35px 70px rgba(0,62,90,.15);
}

.tech-card:hover::before{
    opacity:1;
}

.tech-card i{
    font-size:54px;
    color:#003e5a;
    margin-bottom:22px;
    transition:.4s;
    z-index:2;
}

.tech-card:hover i{
    transform:scale(1.12);
    color:#00b084;
}

.tech-card span{
    z-index:2;
    font-size:1.05rem;
    font-weight:700;
    color:#003e5a;
}

.tech-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(0,176,132,.20),
    transparent 70%);
    top:-70px;
    right:-70px;
    transition:.5s;
}

.tech-card:hover::after{
    transform:scale(1.2);
}

/*=========================
Responsive
=========================*/

@media(max-width:1100px){

.tech-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:850px){

.tech-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:560px){

.tech-section{
    padding:90px 16px;
}

.tech-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.tech-card{
    height:135px;
    border-radius:22px;
}

.tech-card i{
    font-size:38px;
    margin-bottom:14px;
}

.tech-card span{
    font-size:.88rem;
    text-align:center;
}

}

/* Mejoras visuales para Tecnologías */
.tech-card {
    isolation: isolate;
}

.tech-card::before {
    background:
        linear-gradient(140deg, rgba(0,176,132,.15), transparent 55%),
        linear-gradient(90deg, #003e5a, #00b084);
    background-size: 100% 100%, 100% 4px;
    background-repeat: no-repeat;
    background-position: center, top;
}

.tech-card::after {
    filter: blur(4px);
}

.tech-card i {
    position: relative;
}

.tech-card i::after {
    content: "";
    position: absolute;
    width: 74px;
    height: 74px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 176, 132, 0.14);
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: .4s;
}

.tech-card:hover i {
    transform: scale(1.1) rotate(-4deg);
}

.tech-card:hover i::after {
    opacity: 1;
}

/* ============================= */
/* FINAL CTA */
/* ============================= */

.final-cta-section {
    position: relative;
    padding: 110px 20px;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 176, 132, 0.12), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(0, 62, 90, 0.08), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
    overflow: hidden;
}

.final-cta-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.final-cta-card {
    position: relative;
    padding: 66px 48px;
    border-radius: 38px;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 62, 90, 0.10);
    box-shadow: 0 28px 80px rgba(0, 62, 90, 0.10);
    overflow: hidden;
}

.final-cta-card::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -170px;
    top: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,176,132,.18), transparent 68%);
}

.final-cta-card::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -140px;
    bottom: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,62,90,.12), transparent 70%);
}

.final-cta-card h2,
.final-cta-card p,
.final-cta-card .section-badge,
.final-cta-button,
.final-cta-benefits {
    position: relative;
    z-index: 1;
}

.final-cta-card h2 {
    max-width: 760px;
    margin: 22px auto 20px;
    color: #003e5a;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.final-cta-card p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(38, 38, 38, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    min-height: 56px;
    border-radius: 16px;
    background: #00b084;
    color: #ffffff;
    font-size: .98rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(0,176,132,.18);
    box-shadow:
        0 12px 28px rgba(0,176,132,.18);
    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.final-cta-button:hover{
    background:#009a73;
    transform:translateY(-3px);
    box-shadow:
        0 18px 36px rgba(0,176,132,.28);
}

.final-cta-button i{
    font-size:1rem;
    transition:transform .35s ease;
}

.final-cta-button:hover i{
    transform:translateX(4px);
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 26px;
    margin-top: 30px;
}

.final-cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #003e5a;
    font-size: 0.92rem;
    font-weight: 800;
}

.final-cta-benefits i {
    color: #00b084;
    font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 640px) {
    .final-cta-section {
        padding: 80px 16px;
    }

    .final-cta-card {
        padding: 48px 24px;
        border-radius: 30px;
    }

    .final-cta-card h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .final-cta-card p {
        font-size: 0.98rem;
    }

    .final-cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.main-footer {
    position: relative;
    padding: 80px 20px 34px;
    background: #003e5a;
    color: #ffffff;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.footer-brand {
    max-width: 430px;
    margin-bottom: 56px;
}

.footer-brand h2 {
    margin-bottom: 14px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column h3 {
    margin-bottom: 18px;
    color: #fdf7c6;
    font-size: 0.95rem;
    font-weight: 900;
}

.footer-column a {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.94rem;
    transition: color .3s ease, transform .3s ease;
}

.footer-column a:hover {
    color: #00b084;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .final-cta-section {
        padding: 90px 16px 60px;
    }

    .final-cta-card {
        padding: 52px 24px;
        border-radius: 30px;
    }

    .final-cta-benefits {
        flex-direction: column;
        align-items: center;
    }

    .main-footer {
        padding-top: 64px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}