:root {
    color-scheme: light;
    --factuyala-blue: #173eaf;
    --factuyala-orange: #ff8500;
    --support-purple: #6e4ef5;
    --support-purple-soft: rgba(110, 78, 245, 0.12);
    --support-purple-line: rgba(110, 78, 245, 0.28);
    --dark: #1f2735;
    --light: #e9edf7;
    --white: #ffffff;
    --ink: #263141;
    --muted: #6d7684;
    --line: #dfe5f2;
    --soft-blue: #f4f7ff;
    --shadow: 0 24px 60px rgba(31, 39, 53, 0.14);
    --tech-blue-line: rgba(23, 62, 175, 0.08);
    --tech-purple-line: rgba(110, 78, 245, 0.12);
    --tech-orange-line: rgba(255, 133, 0, 0.14);
    --whatsapp: #25d366;
    --whatsapp-dark: #128c4b;
    --sticky-header-offset: 16px;
    --fixed-header-space: 92px;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --factuyala-blue: #7fa1ff;
    --factuyala-orange: #ff9b35;
    --support-purple: #9b86ff;
    --support-purple-soft: rgba(155, 134, 255, 0.16);
    --support-purple-line: rgba(155, 134, 255, 0.34);
    --dark: #f4f7ff;
    --light: #0d1728;
    --ink: #e8eefc;
    --muted: #aebbd0;
    --line: #273753;
    --soft-blue: #101b2f;
    --shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
    --tech-blue-line: rgba(127, 161, 255, 0.12);
    --tech-purple-line: rgba(155, 134, 255, 0.16);
    --tech-orange-line: rgba(255, 155, 53, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: calc(var(--fixed-header-space) + 16px);
}

body {
    position: relative;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

html[data-theme="dark"] body {
    background: #081120;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, var(--tech-blue-line) 1px, transparent 1px),
        linear-gradient(0deg, rgba(110, 78, 245, 0.045) 1px, transparent 1px),
        var(--light);
    background-size: 96px 96px;
    opacity: 0.34;
}

html[data-theme="dark"] body::before {
    background:
        linear-gradient(90deg, rgba(127, 161, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(155, 134, 255, 0.07) 1px, transparent 1px),
        #081120;
    opacity: 1;
}

.top-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 760px;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}

html[data-theme="dark"] .top-banner-image {
    opacity: 0.58;
    filter: brightness(0.72) saturate(0.84);
    mix-blend-mode: multiply;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid rgba(255, 155, 53, 0.72);
    outline-offset: 4px;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-honeypot input {
    pointer-events: none;
}

.site-header {
    position: fixed;
    top: var(--sticky-header-offset);
    left: 50%;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 32px));
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(223, 229, 242, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(31, 39, 53, 0.08);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .restaurant-header {
    border-color: rgba(127, 161, 255, 0.22);
    background: rgba(11, 19, 34, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.header-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--factuyala-blue);
    background: var(--soft-blue);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--support-purple);
    box-shadow: 0 12px 26px rgba(110, 78, 245, 0.18);
}

.mobile-menu-toggle {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--factuyala-blue);
    background: var(--soft-blue);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--support-purple);
    box-shadow: 0 12px 26px rgba(110, 78, 245, 0.18);
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span {
    position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-menu-toggle span::before {
    top: -6px;
}

.mobile-menu-toggle span::after {
    top: 6px;
}

.mobile-menu-toggle[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span::before {
    opacity: 0;
    transform: translateY(6px);
}

.mobile-menu-toggle[aria-expanded="true"] span::after {
    transform: translateY(-6px) rotate(90deg);
}

.mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(223, 229, 242, 0.94);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 54px rgba(31, 39, 53, 0.16);
    backdrop-filter: blur(18px);
}

.mobile-nav:not([hidden]) {
    display: grid;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.mobile-nav a:hover {
    color: var(--support-purple);
    background: var(--support-purple-soft);
}

.theme-toggle-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: inset -6px -4px 0 var(--soft-blue);
}

.theme-toggle-icon::before,
.theme-toggle-icon::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease, box-shadow 180ms ease;
}

html[data-theme="dark"] .theme-toggle {
    color: var(--factuyala-orange);
    background: rgba(255, 155, 53, 0.09);
}

html[data-theme="dark"] .mobile-menu-toggle {
    color: var(--factuyala-orange);
    border-color: var(--line);
    background: rgba(255, 155, 53, 0.09);
}

html[data-theme="dark"] .mobile-nav {
    border-color: rgba(127, 161, 255, 0.22);
    background: rgba(11, 19, 34, 0.98);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .mobile-nav a {
    color: #e8eefc;
}

html[data-theme="dark"] .mobile-nav a:hover {
    color: #ffb15e;
    background: rgba(255, 155, 53, 0.1);
}

html[data-theme="dark"] .theme-toggle-icon {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 4px rgba(255, 155, 53, 0.16);
}

html[data-theme="dark"] .theme-toggle-icon::before {
    opacity: 1;
    box-shadow:
        0 -13px 0 currentColor,
        0 13px 0 currentColor,
        -13px 0 0 currentColor,
        13px 0 0 currentColor;
}

html[data-theme="dark"] .theme-toggle-icon::after {
    opacity: 1;
    box-shadow:
        9px -9px 0 currentColor,
        -9px -9px 0 currentColor,
        9px 9px 0 currentColor,
        -9px 9px 0 currentColor;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -1px;
    height: 1px;
    background: var(--support-purple-line);
    box-shadow: 44px 0 0 var(--tech-orange-line), 88px 0 0 var(--tech-blue-line);
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
    padding-top: var(--fixed-header-space);
}

.brand img {
    width: 178px;
    height: auto;
}

.theme-logo-dark {
    display: none;
}

html[data-theme="dark"] .theme-logo-light {
    display: none;
}

html[data-theme="dark"] .theme-logo-dark {
    display: block;
}

html[data-theme="dark"] .footer-logo-simoon.theme-logo-dark {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.nav-links a {
    transition: color 180ms ease;
}

.nav-links a:hover {
    color: var(--support-purple);
}

.header-cta,
.button {
    position: relative;
    border: 0;
    appearance: none;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.button-secondary::after,
.button-light::after {
    border-color: rgba(23, 62, 175, 0.16);
}

.header-cta,
.button-primary {
    color: var(--white);
    background: var(--support-purple);
    box-shadow: 0 12px 28px rgba(110, 78, 245, 0.24);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.button:hover::after {
    opacity: 1;
}

.button-secondary {
    color: var(--factuyala-blue);
    border: 1px solid var(--line);
    background: var(--white);
}

.button-light {
    color: var(--factuyala-blue);
    background: var(--white);
}

.button-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.pricing-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 26px;
    padding: 20px;
    border: 1px solid var(--support-purple-line);
    border-left: 5px solid var(--factuyala-orange);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(31, 39, 53, 0.07);
}

.pricing-notice strong {
    display: block;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
}

.pricing-notice p {
    max-width: 720px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.pricing-notice .button {
    flex: 0 0 auto;
}

.restaurant-page {
    background: var(--soft-blue);
}

body.restaurant-page main {
    padding-top: 0;
}

.restaurant-header {
    position: fixed;
    top: var(--sticky-header-offset);
    left: 50%;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 32px));
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(223, 229, 242, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(31, 39, 53, 0.08);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.restaurant-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 800;
}

.restaurant-nav a {
    position: relative;
    transition: color 180ms ease;
}

.restaurant-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 99px;
    background: var(--factuyala-orange);
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 180ms ease, transform 180ms ease;
}

.restaurant-nav a:hover {
    color: var(--support-purple);
}

.restaurant-nav a.is-active {
    color: var(--factuyala-blue);
}

.restaurant-nav a.is-active::after,
.restaurant-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.restaurant-hero {
    position: relative;
    isolation: isolate;
    min-height: 650px;
    margin-top: 0;
    padding: 188px max(24px, calc((100% - 1180px) / 2)) 82px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(11, 23, 58, 0.94), rgba(23, 62, 175, 0.82) 48%, rgba(23, 62, 175, 0.35)),
        url("../brand/restaurants/restaurant-system-hero.png") right center / cover no-repeat,
        var(--factuyala-blue);
    animation: restaurantHeroReveal 700ms ease both;
}

.restaurant-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(244, 247, 255, 0), var(--soft-blue));
    pointer-events: none;
}

.restaurant-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 660px;
}

.restaurant-hero-copy > * {
    animation: restaurantFadeUp 720ms ease both;
}

.restaurant-hero-copy > *:nth-child(2) {
    animation-delay: 90ms;
}

.restaurant-hero-copy > *:nth-child(3) {
    animation-delay: 170ms;
}

.restaurant-hero-copy > *:nth-child(4) {
    animation-delay: 250ms;
}

.restaurant-hero .eyebrow {
    color: #ffb15e;
}

.restaurant-hero h1 {
    margin: 14px 0 0;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    line-height: 0.95;
}

.restaurant-hero p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.restaurant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.restaurant-visual {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 210px;
    z-index: 1;
    width: min(260px, 24vw);
    pointer-events: none;
}

.restaurant-visual-card {
    position: relative;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 44px rgba(10, 18, 48, 0.22);
    animation: restaurantFloat 4s ease-in-out infinite;
}

.restaurant-visual-card span,
.restaurant-visual-card small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.restaurant-visual-card strong {
    display: block;
    margin-top: 4px;
    color: var(--factuyala-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.restaurant-visual-card ul {
    display: grid;
    gap: 4px;
    margin: 12px 0;
    padding: 0;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
    list-style: none;
}

.restaurant-band,
.restaurant-section,
.restaurant-support {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0;
}

.has-restaurant-reveal .restaurant-reveal {
    opacity: 0;
    filter: saturate(0.9);
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.has-restaurant-reveal .restaurant-reveal.is-visible {
    opacity: 1;
    filter: saturate(1);
    transform: translateY(0);
}

.restaurant-requirements,
.restaurant-feature-grid,
.restaurant-pricing {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.restaurant-requirements {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.restaurant-requirements article,
.restaurant-feature-grid article,
.restaurant-pricing article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(31, 39, 53, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    animation: restaurantFadeUp 650ms ease both;
}

.restaurant-requirements article:nth-child(2),
.restaurant-pricing article:nth-child(2),
.restaurant-feature-grid article:nth-child(2) {
    animation-delay: 70ms;
}

.restaurant-requirements article:nth-child(3),
.restaurant-feature-grid article:nth-child(3) {
    animation-delay: 140ms;
}

.restaurant-requirements article:nth-child(4),
.restaurant-feature-grid article:nth-child(4) {
    animation-delay: 210ms;
}

.restaurant-requirements article {
    min-height: 188px;
    padding: 22px;
    isolation: isolate;
}

.restaurant-requirements article::before {
    content: "";
    display: block;
    width: 44px;
    height: 5px;
    margin-bottom: 18px;
    border-radius: 99px;
    background: var(--factuyala-orange);
    transition: width 180ms ease, background 180ms ease;
}

.restaurant-requirements article::after {
    content: "";
    position: absolute;
    inset: auto 16px 16px auto;
    z-index: -1;
    width: 54px;
    height: 54px;
    border-right: 1px solid rgba(23, 62, 175, 0.18);
    border-bottom: 1px solid rgba(23, 62, 175, 0.18);
    opacity: 0.8;
    transition: transform 180ms ease, opacity 180ms ease;
}

.restaurant-requirements strong {
    display: block;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
}

.restaurant-requirements p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.restaurant-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-pricing article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
}

.restaurant-pricing article:not(.featured)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--factuyala-blue), var(--support-purple));
    transform: scaleX(0.28);
    transform-origin: left;
    transition: transform 180ms ease;
}

.restaurant-pricing article.featured {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, #173eaf 0%, #244ed3 58%, #6e4ef5 100%);
    box-shadow: 0 26px 60px rgba(23, 62, 175, 0.3);
}

.restaurant-pricing article.featured::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.restaurant-pricing span {
    display: block;
    color: var(--factuyala-orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.restaurant-pricing .featured span,
.restaurant-pricing .featured p {
    color: rgba(255, 255, 255, 0.86);
}

.restaurant-pricing div {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
    color: var(--factuyala-blue);
    font-family: "Montserrat", Arial, sans-serif;
}

.restaurant-pricing .featured div {
    color: var(--white);
}

.restaurant-pricing .restaurant-savings {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    margin-top: 14px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 133, 0, 0.32);
    border-radius: 8px;
    color: var(--factuyala-orange);
    background: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(10, 18, 48, 0.12);
}

.restaurant-pricing small {
    font-size: 1.1rem;
    font-weight: 900;
}

.restaurant-pricing strong {
    font-size: clamp(2.8rem, 8vw, 4.6rem);
    line-height: 1;
}

.restaurant-pricing .restaurant-savings {
    font-size: 0.88rem;
    line-height: 1.1;
}

.restaurant-pricing p {
    margin: 14px 0 0;
    color: var(--muted);
}

.restaurant-pricing .restaurant-plan-button {
    position: relative;
    z-index: 1;
    justify-content: center;
    min-width: 190px;
    margin-top: auto;
}

.restaurant-pricing p + .restaurant-plan-button {
    padding-top: 0;
}

.restaurant-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-feature-grid article {
    min-height: 92px;
    padding: 18px 18px 18px 42px;
    color: var(--ink);
    font-weight: 800;
    isolation: isolate;
}

.restaurant-feature-grid article::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--factuyala-orange);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.restaurant-feature-grid article::after {
    content: "";
    position: absolute;
    inset: auto 14px 14px auto;
    z-index: -1;
    width: 44px;
    height: 44px;
    border-radius: 14px 0 8px 0;
    background: rgba(23, 62, 175, 0.05);
    transition: transform 180ms ease, background 180ms ease;
}

.restaurant-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
    padding: 34px;
    border-radius: 8px;
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 133, 0, 0.2), transparent 26%),
        linear-gradient(135deg, var(--factuyala-blue), #244ed3 62%, var(--support-purple));
    box-shadow: 0 26px 60px rgba(23, 62, 175, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.restaurant-support::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    pointer-events: none;
}

.restaurant-support h2 {
    margin-top: 12px;
    color: var(--white);
}

.restaurant-support p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

@media (hover: hover) {
    .restaurant-requirements article:hover,
    .restaurant-feature-grid article:hover,
    .restaurant-pricing article:hover {
        transform: translateY(-6px);
        border-color: var(--support-purple-line);
        box-shadow: 0 26px 58px rgba(31, 39, 53, 0.13);
    }

    .restaurant-requirements article:hover {
        border-color: rgba(23, 62, 175, 0.32);
        box-shadow: 0 28px 64px rgba(23, 62, 175, 0.16);
    }

    .restaurant-requirements article:hover::before {
        width: 72px;
        background: var(--factuyala-blue);
    }

    .restaurant-requirements article:hover::after {
        opacity: 1;
        transform: translate(-4px, -4px);
    }

    .restaurant-feature-grid article:hover {
        border-color: rgba(23, 62, 175, 0.28);
        box-shadow: 0 24px 52px rgba(23, 62, 175, 0.13);
    }

    .restaurant-feature-grid article:hover::before {
        background: var(--factuyala-blue);
        box-shadow: 0 0 0 6px rgba(23, 62, 175, 0.08);
        transform: scale(1.2);
    }

    .restaurant-feature-grid article:hover::after {
        background: rgba(255, 133, 0, 0.1);
        transform: scale(1.18) rotate(4deg);
    }

    .restaurant-pricing article:not(.featured):hover::before {
        transform: scaleX(1);
    }

    .restaurant-pricing article.featured:hover {
        border-color: transparent;
        box-shadow: 0 30px 70px rgba(23, 62, 175, 0.38);
    }

    .restaurant-support:hover {
        transform: translateY(-4px);
        box-shadow: 0 32px 72px rgba(23, 62, 175, 0.3);
    }

    .has-restaurant-reveal .restaurant-requirements article.restaurant-reveal.is-visible:hover,
    .has-restaurant-reveal .restaurant-feature-grid article.restaurant-reveal.is-visible:hover,
    .has-restaurant-reveal .restaurant-pricing article.restaurant-reveal.is-visible:hover {
        transform: translateY(-6px);
    }

    .has-restaurant-reveal .restaurant-support.restaurant-reveal.is-visible:hover {
        transform: translateY(-4px);
    }
}

@keyframes restaurantHeroReveal {
    from {
        filter: saturate(0.85);
    }

    to {
        filter: saturate(1);
    }
}

@keyframes restaurantFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes restaurantFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.restaurant-footer {
    margin-top: 0;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 24px;
}

.demo-modal[hidden] {
    display: none;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.56);
    backdrop-filter: blur(10px);
}

.demo-modal-panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border: 1px solid rgba(223, 229, 242, 0.96);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.32);
}

.demo-modal-panel::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--support-purple), var(--factuyala-orange));
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.demo-modal-close:hover {
    color: var(--support-purple);
    border-color: var(--support-purple-line);
    transform: translateY(-1px);
}

.demo-modal-heading {
    padding: 30px 30px 18px;
}

.demo-modal-heading span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--factuyala-orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.demo-modal-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.55rem, 4vw, 2rem);
    line-height: 1.12;
}

.demo-modal-heading p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.demo-form {
    display: grid;
    gap: 14px;
    padding: 0 30px 30px;
}

.demo-form label {
    display: grid;
    gap: 7px;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
}

.demo-form input,
.demo-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 13px;
    color: var(--ink);
    background: var(--soft-blue);
    font: 700 0.94rem "Inter", Arial, sans-serif;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-form select {
    appearance: none;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--dark) 50%),
        linear-gradient(135deg, var(--dark) 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 13px) 50%;
    background-repeat: no-repeat;
    background-size: 7px 7px, 7px 7px;
    cursor: pointer;
}

.demo-form input:focus,
.demo-form select:focus {
    border-color: var(--support-purple);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(110, 78, 245, 0.12);
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.demo-form-row input,
.demo-form-row select {
    min-height: 54px;
    padding-left: 14px;
    padding-right: 16px;
    font-size: 0.98rem;
}

.demo-form-row select {
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 14px) 50%;
    background-size: 8px 8px, 8px 8px;
}

.demo-form input[type="date"]::-webkit-calendar-picker-indicator {
    width: 24px;
    height: 24px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.demo-form-error {
    margin: 0;
    color: var(--factuyala-orange);
    font-size: 0.82rem;
    font-weight: 800;
}

.demo-submit {
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--support-purple);
    box-shadow: 0 16px 34px rgba(110, 78, 245, 0.26);
    cursor: pointer;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.94rem;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(110, 78, 245, 0.32);
}

.is-demo-modal-open {
    overflow: hidden;
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 610px;
    margin: 0;
    padding: 92px max(24px, calc((100% - 1180px) / 2)) 58px;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: "";
    position: absolute;
    left: max(24px, calc((100% - 1180px) / 2));
    bottom: 76px;
    z-index: 0;
    width: min(420px, 40vw);
    height: 210px;
    border-left: 1px solid var(--tech-blue-line);
    border-bottom: 1px solid var(--tech-purple-line);
    background:
        linear-gradient(90deg, var(--tech-blue-line) 1px, transparent 1px),
        linear-gradient(0deg, rgba(23, 62, 175, 0.052) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.48;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 0;
    height: 190px;
    background: linear-gradient(
        to bottom,
        rgba(244, 247, 255, 0) 0%,
        rgba(244, 247, 255, 0.72) 62%,
        var(--soft-blue) 100%
    );
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--factuyala-orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: calc(0.78rem + 2px);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--factuyala-blue);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.05;
    letter-spacing: 0;
}

h1 {
    margin-top: 16px;
    font-size: clamp(3rem, 8vw, 6.4rem);
    font-weight: 800;
}

.hero-title {
    width: min(100%, 560px);
}

.hero-title img {
    width: 100%;
    height: auto;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
}

h3 {
    font-size: 1.16rem;
    font-weight: 800;
}

.hero-copy p,
.section-heading p,
.split-copy p,
.contact-card p {
    color: var(--muted);
    font-size: 1.04rem;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-copy p {
    max-width: 570px;
    margin: 22px 0 0;
    font-size: 1.12rem;
}

.hero-copy p.hero-lead {
    max-width: 680px;
    color: #5f6879;
    font-size: clamp(1.22rem, 2.1vw, 1.44rem);
    line-height: 1.62;
}

.hero-lead-main,
.hero-lead-rest {
    display: block;
}

.hero-lead-main {
    color: var(--muted);
}

.typing-word {
    display: inline-flex;
    min-width: 0;
    color: var(--factuyala-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
}

.typing-caret {
    display: inline-block;
    width: 2px;
    height: 1.05em;
    margin-left: 3px;
    background: var(--factuyala-orange);
    transform: translateY(0.16em);
    animation: typingCaret 850ms steps(1) infinite;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-feature-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(900px, calc(100vw - 48px));
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid rgba(110, 78, 245, 0.28);
    border-radius: 8px;
    background: var(--factuyala-blue);
    box-shadow: 0 22px 46px rgba(23, 62, 175, 0.22);
}

.hero-feature-strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--support-purple);
}

.hero-feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 96px;
    padding: 18px 22px;
    color: var(--white);
    background: rgba(6, 20, 73, 0.18);
    transition: background 200ms ease, transform 200ms ease;
}

.hero-feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-feature-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 1px solid rgba(110, 78, 245, 0.34);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.hero-feature-icon img {
    width: 54px;
    height: 54px;
    max-width: none;
    object-fit: cover;
    transform: scale(1.78);
    transform-origin: center;
    transition: transform 200ms ease;
}

.hero-feature-item strong {
    display: block;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-feature-item span:not(.hero-feature-icon) {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    line-height: 1.25;
}

@keyframes typingCaret {
    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

@keyframes homeHeaderDrop {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-18px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes homeFadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes homeFeatureRise {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .site-header {
        animation: homeHeaderDrop 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .hero-copy > .eyebrow,
    .hero-title,
    .hero-lead,
    .hero-actions,
    .hero-feature-strip {
        opacity: 0;
        animation: homeFadeUp 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .hero-title {
        animation-delay: 110ms;
    }

    .hero-lead {
        animation-delay: 210ms;
    }

    .hero-actions {
        animation-delay: 320ms;
    }

    .hero-feature-strip {
        animation-delay: 430ms;
    }

    .hero-feature-item {
        opacity: 0;
        animation: homeFeatureRise 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .hero-feature-item:nth-child(1) {
        animation-delay: 540ms;
    }

    .hero-feature-item:nth-child(2) {
        animation-delay: 610ms;
    }

    .hero-feature-item:nth-child(3) {
        animation-delay: 680ms;
    }

    .hero-feature-item:nth-child(4) {
        animation-delay: 750ms;
    }
}

.has-home-reveal .home-reveal {
    opacity: 0;
    filter: blur(8px);
    translate: 0 28px;
    transition:
        opacity 680ms ease,
        filter 680ms ease,
        translate 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--home-reveal-delay, 0ms);
}

.has-home-reveal .home-reveal.is-visible {
    opacity: 1;
    filter: none;
    translate: 0 0;
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-isotype {
    position: absolute;
    width: min(72%, 380px);
    opacity: 0.09;
    transform: translate(46px, -120px);
}

.dashboard {
    position: relative;
    z-index: 2;
    isolation: isolate;
    width: min(100%, 468px);
    max-width: 100%;
    padding: 22px;
    border: 1px solid rgba(223, 229, 242, 0.92);
    border-radius: 8px;
    background: var(--factuyala-blue);
    box-shadow: var(--shadow);
}

.dashboard::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    z-index: -1;
    border-radius: 8px;
    background: var(--factuyala-blue);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-top span,
.amount-card span,
.mini-card span,
.invoice-list span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.dashboard-top strong {
    display: block;
    margin-top: 2px;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.22rem;
}

.dashboard-top span {
    color: rgba(255, 255, 255, 0.72);
}

.status-pill {
    width: 76px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--factuyala-blue) !important;
    border-radius: 8px;
    background: var(--light);
}

.amount-card {
    margin-top: 22px;
    padding: 24px;
    border-radius: 8px;
    color: var(--white);
    background: var(--dark);
}

.amount-card span,
.amount-card small {
    color: rgba(255, 255, 255, 0.74);
}

.amount-card strong {
    display: block;
    margin-top: 8px;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.1rem, 5vw, 3rem);
    line-height: 1;
}

.amount-card small {
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.mini-card {
    min-height: 118px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft-blue);
}

.mini-card.accent {
    border-color: var(--support-purple);
    background: var(--support-purple);
}

.mini-card strong {
    display: block;
    margin-top: 10px;
    color: var(--factuyala-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.mini-card.accent span {
    color: rgba(255, 255, 255, 0.72);
}

.mini-card.accent strong {
    color: var(--white);
}

.invoice-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.invoice-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.invoice-list strong {
    color: var(--factuyala-orange);
    font-size: 0.84rem;
}

.brand-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.brand-band span {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.brand-band span:nth-child(1) {
    background: var(--factuyala-blue);
}

.brand-band span:nth-child(2) {
    background: var(--factuyala-orange);
}

.brand-band span:nth-child(3) {
    background: var(--support-purple);
}

.brand-band span:nth-child(4) {
    background: var(--dark);
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0;
}

.section-light {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 92px max(16px, calc((100% - 1180px) / 2));
    overflow: hidden;
    background: var(--soft-blue);
}

.section-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 62, 175, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(110, 78, 245, 0.035) 1px, transparent 1px);
    background-size: 82px 82px;
    pointer-events: none;
}

.section-light::after {
    content: "";
    position: absolute;
    top: 104px;
    right: max(16px, calc((100% - 1180px) / 2));
    width: 224px;
    height: 118px;
    background-image: radial-gradient(circle, rgba(23, 62, 175, 0.16) 1.5px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.42;
    pointer-events: none;
}

.section-light > * {
    position: relative;
    z-index: 1;
}

.section-heading {
    position: relative;
    max-width: 720px;
}

.section-heading::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -120px;
    width: 88px;
    height: 28px;
    border-top: 1px solid var(--tech-purple-line);
    border-right: 1px solid var(--tech-orange-line);
    opacity: 0.72;
    pointer-events: none;
}

.section-heading h2 {
    margin-top: 12px;
}

.section-heading p {
    margin: 18px 0 0;
}

.solution-grid,
.module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.feature-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 276px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(31, 39, 53, 0.07);
    transition:
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 240ms ease;
    will-change: transform;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-top: 1px solid var(--tech-blue-line);
    border-right: 1px solid var(--tech-purple-line);
    opacity: 0.82;
    pointer-events: none;
}

.feature-icon-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light);
}

.feature-icon-image {
    width: 72px;
    height: 72px;
    max-width: none;
    flex: 0 0 auto;
    object-fit: cover;
    transform: scale(1.72);
    transform-origin: center;
}

.feature-icon {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: var(--light);
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 3px solid var(--factuyala-blue);
    border-radius: 50%;
}

.feature-icon.target::after {
    inset: 19px;
    border-color: var(--factuyala-orange);
    background: var(--factuyala-orange);
}

.feature-icon.document::before {
    border-radius: 5px;
}

.feature-icon.document::after {
    inset: 17px 13px auto;
    height: 3px;
    border: 0;
    border-radius: 2px;
    background: var(--factuyala-orange);
}

.feature-icon.chart::before {
    inset: auto 12px 12px;
    height: 18px;
    border: 0;
    border-left: 6px solid var(--factuyala-blue);
    border-right: 6px solid var(--support-purple);
    border-radius: 0;
}

.feature-icon.chart::after {
    inset: auto 20px 12px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: var(--factuyala-orange);
}

.feature-icon.support::before {
    inset: 12px 10px 18px;
    border-radius: 8px 8px 4px 4px;
}

.feature-icon.support::after {
    inset: 26px 17px 11px;
    border: 0;
    border-radius: 0 0 10px 10px;
    border-bottom: 3px solid var(--factuyala-orange);
    border-left: 3px solid var(--factuyala-orange);
}

.feature-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: 46px;
}

.split-copy h2 {
    margin-top: 12px;
}

.split-copy p {
    margin: 18px 0 28px;
}

.benefit-list {
    display: grid;
    gap: 14px;
}

.benefit-list article {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    padding: 22px;
    border-left: 5px solid var(--factuyala-orange);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(31, 39, 53, 0.08);
    transition:
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 240ms ease,
        background 240ms ease;
    will-change: transform;
}

.benefit-list article::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 22px;
    border-right: 1px solid var(--tech-blue-line);
    border-bottom: 1px solid var(--tech-purple-line);
    opacity: 0.75;
    pointer-events: none;
}

.benefit-list article:nth-child(2) {
    border-left-color: var(--support-purple);
}

.benefit-list strong {
    display: block;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.08rem;
}

.benefit-list span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.pricing-section {
    padding-top: 16px;
}

.billing-panel {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(31, 39, 53, 0.07);
}

.billing-label {
    color: var(--muted);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.billing-label.is-active {
    color: var(--factuyala-blue);
}

.billing-switch {
    position: relative;
    width: 64px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--factuyala-blue);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.billing-switch span {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(31, 39, 53, 0.2);
    transition: transform 180ms ease;
}

.billing-switch.is-annual {
    background: var(--support-purple);
}

.billing-switch.is-annual span {
    transform: translateX(30px);
}

.billing-panel strong {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--support-purple);
    background: var(--light);
    font-size: 0.86rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
}

.price-card {
    position: relative;
    isolation: isolate;
    overflow: visible;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(31, 39, 53, 0.08);
    transition:
        transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 240ms ease;
    will-change: transform;
}

.price-card::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
    border-top: 1px solid var(--tech-blue-line);
    border-right: 1px solid var(--tech-purple-line);
    opacity: 0.8;
    pointer-events: none;
}

.price-card.featured {
    color: var(--white);
    border-color: transparent;
    background: var(--factuyala-blue);
    box-shadow: 0 26px 60px rgba(23, 62, 175, 0.26);
}

.price-card.featured::after {
    border-color: rgba(255, 255, 255, 0.34);
}

.price-card h3 {
    color: var(--dark);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured li,
.price-card.featured .price {
    color: var(--white);
}

.price-card p {
    min-height: 58px;
    margin: 12px 0 0;
    color: var(--muted);
}

.plan-badge {
    position: absolute;
    top: -18px;
    left: 26px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--white);
    background: var(--support-purple);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(31, 39, 53, 0.18);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 22px;
    color: var(--factuyala-blue);
}

.price small,
.price span {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
}

.price strong {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 3.3rem;
    line-height: 1;
}

.annual-price {
    display: block;
    margin-top: 8px;
    color: var(--factuyala-orange);
    font-weight: 800;
}

.annual-price[hidden] {
    display: none !important;
}

.savings-note {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--white);
    background: var(--factuyala-orange);
    font-size: 0.84rem;
    font-weight: 800;
}

.savings-note[hidden] {
    display: none !important;
}

.price-card:not(.featured) .savings-note {
    color: var(--support-purple);
    background: var(--light);
    border: 1px solid var(--support-purple);
}

.price-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 26px;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    font-size: 0.94rem;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--factuyala-orange);
}

.price-card .button {
    margin-top: auto;
}

.comparison-block {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft-blue);
}

.comparison-block::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 112px;
    height: 44px;
    border-top: 1px solid var(--tech-purple-line);
    border-left: 1px solid var(--tech-blue-line);
    opacity: 0.65;
    pointer-events: none;
}

.comparison-block::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 160px;
    height: 64px;
    background-image: radial-gradient(circle, rgba(110, 78, 245, 0.18) 1.5px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.38;
    pointer-events: none;
}

.comparison-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.comparison-heading h3 {
    margin-top: 10px;
    color: var(--dark);
}

.comparison-block .eyebrow {
    color: var(--factuyala-blue);
}

.comparison-scroll {
    position: relative;
    z-index: 1;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    color: var(--white);
    background: var(--factuyala-blue);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.92rem;
}

.comparison-table thead th:nth-child(3) {
    background: var(--support-purple);
}

.comparison-table tbody th {
    width: 38%;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.94rem;
}

.comparison-table tbody th span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.comparison-table td {
    color: var(--factuyala-blue);
    font-weight: 800;
}

.comparison-table td:nth-child(3) {
    color: var(--support-purple);
}

.comparison-table tbody th {
    color: var(--dark);
}

.comparison-table tbody th span {
    color: var(--muted);
}

.comparison-table tbody td:not(:nth-child(3)) {
    color: var(--factuyala-blue);
}

.comparison-table tbody td.is-no {
    color: var(--factuyala-orange);
}

.section-dark {
    width: 100%;
    padding: 92px max(16px, calc((100% - 1180px) / 2));
    color: var(--white);
    background: var(--factuyala-blue);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, 0.76);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.process-grid article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 236px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: processCardFloat 8s ease-in-out infinite;
    transition:
        transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 260ms ease,
        background 260ms ease,
        box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.process-grid article::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    z-index: 0;
    height: 3px;
    border-radius: 8px 8px 0 0;
    background: var(--factuyala-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 260ms ease;
}

.process-grid article::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-top: 1px solid rgba(110, 78, 245, 0.46);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.74;
    pointer-events: none;
}

.process-grid article > * {
    position: relative;
    z-index: 1;
}

.process-grid article:nth-child(even) {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.process-grid article:nth-child(2) {
    animation-delay: 0.8s;
}

.process-grid article:nth-child(3) {
    animation-delay: 1.6s;
}

.process-grid article:nth-child(4) {
    animation-delay: 2.4s;
}

.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 133, 0, 0.42);
    border-radius: 8px;
    color: var(--factuyala-orange);
    background: rgba(255, 133, 0, 0.08);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.process-grid h3 {
    margin-top: 38px;
}

.process-grid p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

@keyframes processCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.contact-section {
    padding-top: 92px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 8px;
    color: var(--white);
    background: var(--factuyala-blue);
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    pointer-events: none;
}

.contact-card::after {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    background: url("../brand/ISOTIPO.png") center / contain no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.contact-card img {
    width: 230px;
    margin-bottom: 30px;
}

.contact-card h2 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    color: var(--white);
}

.contact-card p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.social-rail {
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 118;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(223, 229, 242, 0.96);
    border-radius: 8px;
    color: var(--factuyala-blue);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(31, 39, 53, 0.14);
    transition:
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        color 220ms ease;
}

.social-button svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.social-button-facebook {
    color: var(--white);
    border-color: #1877f2;
    background: #1877f2;
}

.social-button-tiktok {
    color: var(--white);
    border-color: #111827;
    background: #111827;
}

.social-button-tiktok .tiktok-accent-cyan {
    fill: #25f4ee;
    transform: translate(-0.9px, 0.9px);
}

.social-button-tiktok .tiktok-accent-red {
    fill: #fe2c55;
    transform: translate(0.9px, -0.9px);
}

.social-button-tiktok .tiktok-mark {
    fill: currentColor;
}

.social-button:hover {
    transform: translate3d(-3px, 0, 0);
    box-shadow: 0 18px 42px rgba(31, 39, 53, 0.2);
}

.social-button:focus-visible {
    outline: 4px solid rgba(110, 78, 245, 0.22);
    outline-offset: 4px;
}

.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
}

.whatsapp-chat {
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(223, 229, 242, 0.92);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(31, 39, 53, 0.22);
    pointer-events: auto;
}

.whatsapp-chat[hidden] {
    display: none;
}

.whatsapp-nudge {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: min(260px, calc(100vw - 32px));
    padding: 10px 16px;
    border: 1px solid rgba(223, 229, 242, 0.92);
    border-radius: 999px;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(31, 39, 53, 0.16);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.15;
    pointer-events: none;
    transform-origin: right bottom;
    animation: whatsappNudge 4.8s ease-in-out infinite;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.whatsapp-nudge::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -6px;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(223, 229, 242, 0.92);
    border-bottom: 1px solid rgba(223, 229, 242, 0.92);
    background: rgba(255, 255, 255, 0.96);
    transform: rotate(45deg);
}

.whatsapp-widget.is-open .whatsapp-nudge {
    display: none;
    animation: none;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    visibility: hidden;
}

.whatsapp-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    color: var(--white);
    background: var(--factuyala-blue);
}

.whatsapp-chat-header span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

.whatsapp-chat-header strong {
    display: block;
    margin-top: 2px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}

.whatsapp-chat-header small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.whatsapp-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
}

.whatsapp-chat-body {
    padding: 18px;
}

.whatsapp-chat-body p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

.whatsapp-form {
    display: grid;
    gap: 12px;
}

.whatsapp-form label {
    display: grid;
    gap: 6px;
    color: var(--dark);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
}

.whatsapp-form input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--ink);
    background: var(--soft-blue);
    font: 600 0.94rem "Inter", Arial, sans-serif;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-form input:focus {
    border-color: var(--support-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(110, 78, 245, 0.12);
}

.whatsapp-error {
    margin: 0;
    color: var(--factuyala-orange) !important;
    font-size: 0.82rem !important;
    font-weight: 700;
}

.whatsapp-submit {
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--support-purple);
    cursor: pointer;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(110, 78, 245, 0.24);
}

.whatsapp-float {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 8px 22px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: var(--white);
    background-image:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.32), transparent 28%),
        linear-gradient(135deg, #0b8f4f 0%, #19bd62 48%, #25d366 100%);
    box-shadow: 0 18px 42px rgba(18, 140, 75, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
    isolation: isolate;
    overflow: visible;
    pointer-events: auto;
    animation: whatsappGlow 2.8s ease-in-out infinite;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 2px solid rgba(37, 211, 102, 0.42);
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 1.55s ease-out infinite;
}

.whatsapp-float::after {
    content: "1";
    position: absolute;
    top: -7px;
    right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--factuyala-orange);
    box-shadow: 0 9px 18px rgba(255, 133, 0, 0.34);
    font: 900 0.72rem "Montserrat", Arial, sans-serif;
    animation: whatsappBadge 1.35s ease-in-out infinite;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    animation: whatsappIconCall 3.2s ease-in-out infinite;
}

.whatsapp-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-label {
    display: grid;
    gap: 1px;
    line-height: 1.1;
    text-align: left;
}

.whatsapp-label strong,
.whatsapp-label small {
    display: block;
}

.whatsapp-label strong {
    font-size: 0.9rem;
    white-space: nowrap;
}

.whatsapp-label small {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
}

.whatsapp-float:hover,
.whatsapp-float.is-open {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 24px 54px rgba(18, 140, 75, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.whatsapp-float:focus-visible {
    outline: 4px solid rgba(37, 211, 102, 0.24);
    outline-offset: 4px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 164px;
    z-index: 82;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--support-purple-line);
    border-radius: 8px;
    color: var(--white);
    background: rgba(110, 78, 245, 0.94);
    box-shadow: 0 18px 38px rgba(31, 39, 53, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
    background: var(--support-purple);
    box-shadow: 0 22px 46px rgba(110, 78, 245, 0.3);
}

.back-to-top span {
    width: 13px;
    height: 13px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
    transform: translateY(3px) rotate(45deg);
}

.back-to-top[hidden] {
    display: none;
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.9;
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.34);
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@keyframes whatsappGlow {
    0%,
    100% {
        box-shadow: 0 18px 42px rgba(18, 140, 75, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    50% {
        box-shadow: 0 22px 58px rgba(18, 140, 75, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }
}

@keyframes whatsappIconCall {
    0%,
    12%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    3% {
        transform: rotate(-9deg) scale(1.07);
    }

    6% {
        transform: rotate(9deg) scale(1.07);
    }

    9% {
        transform: rotate(-5deg) scale(1.04);
    }
}

@keyframes whatsappBadge {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.14);
    }
}

@keyframes whatsappNudge {
    0%,
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    45% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    52% {
        transform: translateY(-5px) scale(1.02);
    }

    60% {
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-nudge,
    .whatsapp-float,
    .whatsapp-float::before,
    .whatsapp-float::after,
    .whatsapp-icon {
        animation: none;
    }
}

@media (hover: hover) {
    .hero-feature-item:hover {
        background: rgba(110, 78, 245, 0.18);
        transform: translateY(-2px);
    }

    .hero-feature-item:hover .hero-feature-icon {
        border-color: rgba(255, 133, 0, 0.82);
        background: rgba(255, 255, 255, 0.14);
        transform: translateY(-2px);
    }

    .hero-feature-item:hover .hero-feature-icon img {
        transform: scale(1.88);
    }

    .feature-card:hover,
    .price-card:hover,
    .benefit-list article:hover {
        transform: translate3d(0, -4px, 0) scale(1.006);
        box-shadow: 0 24px 56px rgba(31, 39, 53, 0.12);
    }

    .feature-card:hover {
        border-color: var(--support-purple);
    }

    .price-card:hover {
        border-color: var(--support-purple-line);
    }

    .price-card.featured:hover {
        box-shadow: 0 28px 66px rgba(23, 62, 175, 0.3);
    }

    .process-grid article:hover {
        animation: none;
        transform: translate3d(0, -5px, 0) scale(1.004);
        border-color: rgba(110, 78, 245, 0.74);
        background: rgba(255, 255, 255, 0.14);
        box-shadow: 0 24px 54px rgba(10, 18, 48, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .process-grid article:hover::before {
        transform: scaleX(1);
    }

    .process-grid article:hover::after {
        border-top-color: rgba(255, 133, 0, 0.62);
        border-right-color: rgba(110, 78, 245, 0.62);
        opacity: 1;
    }

    .process-grid article:hover span {
        color: var(--factuyala-blue);
        border-color: var(--factuyala-orange);
        background: var(--factuyala-orange);
    }
}

@media (prefers-reduced-motion: reduce) {
    .typing-caret,
    .process-grid article,
    .whatsapp-float::before,
    .restaurant-hero,
    .restaurant-hero-copy > *,
    .restaurant-visual-card,
    .restaurant-requirements article,
    .restaurant-feature-grid article,
    .restaurant-pricing article {
        animation: none;
    }

    .has-restaurant-reveal .restaurant-reveal {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

.site-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 38px;
    border-top: 1px solid var(--line);
}

.site-footer::before {
    content: none;
}

.footer-brand-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding-top: 14px;
}

.footer-brand-group::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--support-purple);
}

.footer-logo {
    display: block;
    flex: 0 0 auto;
    width: clamp(154px, 16vw, 176px);
    height: 44px;
    object-fit: contain;
}

.footer-logo-factuyala {
    width: clamp(154px, 16vw, 176px);
}

.footer-logo-simoon {
    width: clamp(154px, 16vw, 176px);
}

.footer-logo.theme-logo-dark {
    display: none;
}

html[data-theme="dark"] .footer-logo.theme-logo-light {
    display: none;
}

html[data-theme="dark"] .footer-logo.theme-logo-dark {
    display: block;
}

.footer-brand-separator {
    display: inline-flex;
    flex: 0 0 auto;
    width: 1px;
    height: 36px;
    background: var(--line);
}

.footer-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
    color: var(--muted);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: right;
}

.footer-copy strong {
    color: var(--factuyala-blue);
    font-size: 0.86rem;
    font-weight: 800;
}

html[data-theme="dark"] .restaurant-page,
html[data-theme="dark"] .section-light {
    background: #0a1323;
}

html[data-theme="dark"] .section-dark {
    background:
        radial-gradient(circle at 78% 18%, rgba(155, 134, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #0a1323 0%, #102248 48%, #173eaf 100%);
}

html[data-theme="dark"] .section-light::before,
html[data-theme="dark"] .section-light::after,
html[data-theme="dark"] .comparison-block::after {
    opacity: 0.22;
}

html[data-theme="dark"] .hero::after {
    background: linear-gradient(
        to bottom,
        rgba(8, 17, 32, 0) 0%,
        rgba(8, 17, 32, 0.62) 58%,
        #0a1323 100%
    );
}

html[data-theme="dark"] .hero-copy p,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .split-copy p,
html[data-theme="dark"] .contact-card p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .benefit-list span,
html[data-theme="dark"] .price-card p,
html[data-theme="dark"] .price-card li,
html[data-theme="dark"] .restaurant-requirements p,
html[data-theme="dark"] .restaurant-pricing p,
html[data-theme="dark"] .restaurant-visual-card span,
html[data-theme="dark"] .restaurant-visual-card small,
html[data-theme="dark"] .whatsapp-chat-body p {
    color: var(--muted);
}

html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .benefit-list article,
html[data-theme="dark"] .billing-panel,
html[data-theme="dark"] .price-card,
html[data-theme="dark"] .comparison-table,
html[data-theme="dark"] .restaurant-visual-card,
html[data-theme="dark"] .restaurant-requirements article,
html[data-theme="dark"] .restaurant-feature-grid article,
html[data-theme="dark"] .restaurant-pricing article:not(.featured),
html[data-theme="dark"] .demo-modal-panel,
html[data-theme="dark"] .whatsapp-chat {
    border-color: var(--line);
    background: #111c30;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .pricing-notice {
    border-color: rgba(155, 134, 255, 0.38);
    border-left-color: var(--factuyala-orange);
    background:
        linear-gradient(135deg, rgba(17, 28, 48, 0.98), rgba(13, 23, 40, 0.98)),
        #111c30;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .pricing-notice strong {
    color: #f4f7ff;
}

html[data-theme="dark"] .pricing-notice p {
    color: #c7d2e6;
}

html[data-theme="dark"] .pricing-notice .button-primary {
    color: #ffffff;
    background: #8e78ff;
    box-shadow: 0 16px 34px rgba(110, 78, 245, 0.34);
}

html[data-theme="dark"] .back-to-top {
    color: #081120;
    border-color: rgba(255, 155, 53, 0.34);
    background: #ff9b35;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .button-secondary {
    color: #e8eefc;
}

html[data-theme="dark"] .button-light {
    color: #173eaf;
    background: #ffffff;
}

html[data-theme="dark"] .feature-icon-frame,
html[data-theme="dark"] .feature-icon,
html[data-theme="dark"] .billing-panel strong,
html[data-theme="dark"] .price-card:not(.featured) .savings-note,
html[data-theme="dark"] .whatsapp-form input,
html[data-theme="dark"] .demo-form input,
html[data-theme="dark"] .demo-form select {
    border-color: var(--line);
    background: #0b1424;
}

html[data-theme="dark"] .whatsapp-form input,
html[data-theme="dark"] .demo-form input,
html[data-theme="dark"] .demo-form select {
    color: var(--ink);
}

html[data-theme="dark"] .demo-form input:focus,
html[data-theme="dark"] .demo-form select:focus,
html[data-theme="dark"] .whatsapp-form input:focus {
    background: #111c30;
}

html[data-theme="dark"] .hero-feature-strip,
html[data-theme="dark"] .price-card.featured,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .whatsapp-chat-header {
    background: linear-gradient(135deg, #12317d 0%, #173eaf 58%, #5e4de7 100%);
}

html[data-theme="dark"] .restaurant-pricing article.featured,
html[data-theme="dark"] .restaurant-support {
    background: linear-gradient(135deg, #12317d 0%, #173eaf 58%, #5e4de7 100%);
}

html[data-theme="dark"] .section-dark .section-heading p,
html[data-theme="dark"] .process-grid p {
    color: #c7d2e6;
}

html[data-theme="dark"] .process-grid article {
    border-color: rgba(155, 134, 255, 0.26);
    background: rgba(17, 28, 48, 0.76);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .process-grid article:nth-child(even) {
    border-color: rgba(127, 161, 255, 0.28);
    background: rgba(18, 36, 76, 0.72);
}

html[data-theme="dark"] .process-grid h3 {
    color: #f4f7ff;
}

html[data-theme="dark"] .process-grid span {
    color: #ffb15e;
    border-color: rgba(255, 155, 53, 0.5);
    background: rgba(255, 155, 53, 0.1);
}

html[data-theme="dark"] .process-grid article::after {
    border-top-color: rgba(155, 134, 255, 0.26);
    border-right-color: rgba(127, 161, 255, 0.18);
}

@media (hover: hover) {
    html[data-theme="dark"] .feature-card:hover,
    html[data-theme="dark"] .price-card:hover,
    html[data-theme="dark"] .benefit-list article:hover {
        border-color: #9b86ff;
        box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(155, 134, 255, 0.24);
    }

    html[data-theme="dark"] .feature-card:hover::after,
    html[data-theme="dark"] .price-card:hover::after {
        border-top-color: rgba(255, 155, 53, 0.58);
        border-right-color: rgba(155, 134, 255, 0.72);
    }

    html[data-theme="dark"] .process-grid article:hover {
        border-color: rgba(155, 134, 255, 0.78);
        background: rgba(22, 36, 66, 0.9);
        box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(155, 134, 255, 0.22);
    }

    html[data-theme="dark"] .process-grid article:hover span {
        color: #081120;
        background: #ff9b35;
    }
}

html[data-theme="dark"] .comparison-block {
    background: #0d1728;
}

html[data-theme="dark"] .comparison-table thead th {
    color: #ffffff;
    background: #173eaf;
}

html[data-theme="dark"] .comparison-table thead th:nth-child(3) {
    background: #6e4ef5;
}

html[data-theme="dark"] .comparison-table tbody td:not(:nth-child(3)),
html[data-theme="dark"] .price,
html[data-theme="dark"] .restaurant-pricing div {
    color: var(--factuyala-blue);
}

html[data-theme="dark"] .comparison-table tbody td.is-no,
html[data-theme="dark"] .annual-price {
    color: var(--factuyala-orange);
}

html[data-theme="dark"] .comparison-table tr {
    background: #111c30;
}

html[data-theme="dark"] .comparison-table td:nth-child(3) {
    background: rgba(155, 134, 255, 0.12);
}

html[data-theme="dark"] .restaurant-hero::after {
    background: linear-gradient(to bottom, rgba(10, 19, 35, 0), #0a1323);
}

html[data-theme="dark"] .restaurant-visual-card ul {
    color: var(--ink);
}

html[data-theme="dark"] .whatsapp-nudge {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(17, 28, 48, 0.96);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .whatsapp-nudge::after {
    border-color: var(--line);
    background: rgba(17, 28, 48, 0.96);
}

html[data-theme="dark"] .social-button {
    border-color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .social-button-facebook {
    color: #1877f2;
}

html[data-theme="dark"] .social-button-tiktok {
    color: #050505;
}

html[data-theme="dark"] .social-button-tiktok .tiktok-accent-cyan {
    fill: #fe2c55;
}

html[data-theme="dark"] .social-button-tiktok .tiktok-accent-red {
    fill: #25f4ee;
}

html[data-theme="dark"] .footer-copy strong {
    color: var(--factuyala-orange);
}

@media (max-width: 980px) {
    .top-banner-image {
        height: 720px;
        object-position: 58% top;
    }

    .hero::before {
        width: 280px;
        height: 150px;
        opacity: 0.32;
    }

    .site-header {
        align-items: flex-start;
    }

    .nav-links,
    .restaurant-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 560px;
        padding-top: 76px;
        padding-bottom: 46px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .solution-grid,
    .module-grid,
    .pricing-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-notice,
    .restaurant-support {
        align-items: flex-start;
        flex-direction: column;
    }

    .restaurant-hero {
        min-height: 620px;
        background:
            linear-gradient(90deg, rgba(11, 23, 58, 0.95), rgba(23, 62, 175, 0.78)),
            url("../brand/restaurants/restaurant-system-hero.png") right center / cover no-repeat,
            var(--factuyala-blue);
    }

    .restaurant-visual {
        display: none;
    }

    .restaurant-requirements,
    .restaurant-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-table {
        min-width: 700px;
    }
}

@media (max-width: 680px) {
    :root {
        --sticky-header-offset: 12px;
        --fixed-header-space: 76px;
    }

    .top-banner-image {
        height: 690px;
        object-position: 64% top;
    }

    .hero::before,
    .section-light::after,
    .section-heading::after {
        display: none;
    }

    .site-header {
        align-items: center;
        width: calc(100vw - 32px);
        padding: 12px;
        gap: 8px;
    }

    .restaurant-header {
        align-items: center;
        width: calc(100vw - 32px);
        padding: 12px;
        gap: 10px;
    }

    .restaurant-nav {
        display: none;
    }

    .restaurant-header .header-cta {
        display: none;
    }

    .hero > *,
    .split-section > *,
    .section-heading {
        min-width: 0;
        max-width: 100%;
    }

    .hero-copy,
    .hero-actions {
        width: 100%;
    }

    .brand img {
        width: 142px;
    }

    .site-header .header-cta {
        display: inline-flex;
        min-height: 40px;
        padding: 0 12px;
        font-size: 0;
        white-space: nowrap;
    }

    .site-header .header-cta::before {
        content: "Demo";
        font-size: 0.78rem;
    }

    .section,
    .brand-band,
    .site-footer {
        width: calc(100vw - 32px);
        max-width: 1180px;
    }

    .section-light,
    .section-dark {
        width: 100%;
        max-width: none;
    }

    .hero {
        gap: 28px;
        width: 100%;
        max-width: none;
        min-height: 0;
        padding: 64px 16px 40px;
    }

    h1 {
        font-size: clamp(2.85rem, 14vw, 3.55rem);
    }

    .hero-title {
        width: min(100%, 340px);
    }

    .hero-copy p,
    .section-heading p,
    .split-copy p,
    .contact-card p {
        font-size: 1rem;
    }

    .hero-copy p.hero-lead {
        max-width: min(100%, 340px);
        font-size: 1.08rem;
        line-height: 1.58;
    }

    .billing-panel {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 64px 1fr;
        justify-items: center;
    }

    .billing-panel strong {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .pricing-notice {
        margin-top: 22px;
        padding: 18px;
    }

    .demo-modal {
        padding: 14px;
    }

    .demo-modal-panel {
        max-height: calc(100vh - 28px);
    }

    .demo-modal-heading {
        padding: 26px 18px 16px;
    }

    .demo-form {
        padding: 0 18px 22px;
    }

    .demo-form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-grid,
    .solution-grid,
    .module-grid,
    .pricing-grid,
    .process-grid,
    .brand-band,
    .restaurant-requirements,
    .restaurant-feature-grid,
    .restaurant-pricing {
        grid-template-columns: 1fr;
    }

    .restaurant-hero {
        min-height: 0;
        margin-top: 0;
        padding: 148px 16px 72px;
        background:
            linear-gradient(90deg, rgba(11, 23, 58, 0.96), rgba(23, 62, 175, 0.76)),
            url("../brand/restaurants/restaurant-system-hero.png") center / cover no-repeat,
            var(--factuyala-blue);
    }

    .restaurant-hero h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9.2vw, 2.55rem);
        line-height: 1.08;
    }

    .restaurant-hero p {
        font-size: 1rem;
        overflow-wrap: break-word;
    }

    .restaurant-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .restaurant-band,
    .restaurant-section,
    .restaurant-support {
        width: calc(100vw - 32px);
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .restaurant-support {
        padding: 24px;
    }

    .hero-visual {
        min-height: 0;
        padding-bottom: 18px;
    }

    .dashboard {
        padding: 16px;
    }

    .dashboard::before {
        inset: 12px -10px -12px 10px;
    }

    .amount-card {
        padding: 20px;
    }

    .section,
    .section-light,
    .section-dark {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .feature-card,
    .price-card,
    .process-grid article {
        min-height: auto;
    }

    .hero-feature-strip {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-feature-item:not(:last-child)::after {
        display: block;
        top: auto;
        left: 22px;
        right: 22px;
        bottom: 0;
        width: auto;
        height: 1px;
    }

    .comparison-block {
        padding: 18px;
    }

    .comparison-block::before,
    .comparison-block::after {
        display: none;
    }

    .comparison-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .comparison-scroll {
        overflow-x: visible;
    }

    .comparison-table {
        display: block;
        width: 100%;
        min-width: 0;
        border-radius: 0;
        background: transparent;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: grid;
        gap: 10px;
    }

    .comparison-table tr {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 14px 34px rgba(11, 23, 58, 0.08);
    }

    .comparison-table th,
    .comparison-table td {
        border-bottom: 0;
        padding: 12px;
    }

    .comparison-table tbody th {
        grid-column: 1 / -1;
        width: auto;
        padding: 14px 14px 11px;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
    }

    .comparison-table tbody th span {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .comparison-table td {
        display: flex;
        min-width: 0;
        flex-direction: column;
        gap: 6px;
        justify-content: space-between;
        border-left: 1px solid var(--line);
        font-size: 0.92rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .comparison-table td:nth-child(2) {
        border-left: 0;
    }

    .comparison-table td:nth-child(3) {
        background: rgba(110, 78, 245, 0.06);
    }

    .comparison-table td::before {
        color: var(--muted);
        content: "";
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .comparison-table td:nth-child(2)::before {
        content: "Despega";
    }

    .comparison-table td:nth-child(3)::before {
        content: "Control";
    }

    .comparison-table td:nth-child(4)::before {
        content: "Empresarial";
    }

    html[data-theme="dark"] .comparison-table tr {
        border-color: rgba(127, 161, 255, 0.22);
        background: #101b2f;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    }

    html[data-theme="dark"] .comparison-table tbody th {
        border-bottom-color: rgba(127, 161, 255, 0.2);
        color: #f4f7ff;
    }

    html[data-theme="dark"] .comparison-table tbody th span {
        color: #b8c6dc;
    }

    html[data-theme="dark"] .comparison-table td {
        border-left-color: rgba(127, 161, 255, 0.2);
        color: #8fb0ff;
        background: #0d1728;
    }

    html[data-theme="dark"] .comparison-table td:nth-child(3) {
        color: #c2b7ff;
        background: #171d3a;
    }

    html[data-theme="dark"] .comparison-table td::before {
        color: #d6def0;
    }

    html[data-theme="dark"] .comparison-table tbody td.is-no {
        color: #ffb15e;
    }

    .contact-card {
        padding: 30px 22px;
    }

    .contact-card::before {
        inset: 14px;
    }

    .contact-card img {
        width: 190px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 132px;
    }

    .footer-brand-group {
        flex-wrap: wrap;
    }

    .footer-copy {
        align-items: flex-start;
        text-align: left;
    }

    .whatsapp-widget {
        left: 16px;
        right: 16px;
        bottom: 14px;
        align-items: stretch;
    }

    .whatsapp-chat {
        width: 100%;
    }

    .whatsapp-nudge {
        align-self: flex-end;
        max-width: calc(100vw - 64px);
        margin-right: 10px;
    }

    .whatsapp-float {
        justify-content: center;
        width: 100%;
    }

    .social-rail {
        right: 10px;
        gap: 8px;
    }

    .social-button {
        width: 40px;
        height: 40px;
    }

    .social-button svg {
        width: 20px;
        height: 20px;
    }

    .back-to-top {
        right: 16px;
        bottom: 154px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .site-header,
    .hero,
    .brand-band,
    .site-footer {
        width: calc(100vw - 32px);
    }

    .section:not(.section-light):not(.section-dark) {
        width: calc(100vw - 32px);
    }

    .section-light,
    .section-dark {
        width: 100%;
    }

    h1 {
        font-size: clamp(2.4rem, 12vw, 3rem);
    }

    .eyebrow {
        gap: 6px;
        font-size: calc(0.68rem + 2px);
    }

    .eyebrow::before {
        width: 22px;
    }

    .footer-brand-group {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        max-width: 272px;
    }

    .footer-brand-separator {
        width: 1px;
        height: 28px;
    }

    .footer-logo,
    .footer-logo-factuyala,
    .footer-logo-simoon {
        width: min(128px, calc((100vw - 72px) / 2));
        height: 32px;
    }

    .hero-copy p,
    .section-heading p,
    .split-copy p,
    .contact-card p {
        font-size: 0.96rem;
    }

    .hero-copy p.hero-lead {
        font-size: 1.08rem;
    }

    .typing-word {
        min-width: 0;
        white-space: nowrap;
    }

    .hero-feature-strip {
        grid-template-columns: 1fr;
    }

    .hero-feature-item:not(:last-child)::after {
        display: block;
        top: auto;
        left: 22px;
        right: 22px;
        bottom: 0;
        width: auto;
        height: 1px;
    }
}
