@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body{
    background: linear-gradient(180deg, #fffdf8 0%, #f5f1ee 100%);
    color: #1f1f1f;
    overflow-x: hidden;
}

.block,
.trust-card,
.process-card,
.specialty-box,
.cta-banner,
.mail-contact-accordion {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(18px);
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

h1 {
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
    color: #1f1f1f;
    margin-bottom: 10px;
}

h2 {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2.5px;
    color: #1f1f1f;
}

h3 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -2px;
    color: #1f1f1f;
}

h4 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -1.5px;
    color: #1f1f1f;
}

h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #1f1f1f;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.5px;
    color: #1f1f1f;
}

.navbar {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 31, 31, 0.08);
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 36px;
    transition: transform 0.32s ease, box-shadow 0.28s ease, background-color 0.28s ease, opacity 0.24s ease;
    will-change: transform, opacity;
}

.navbar.is-hidden {
    transform: translate3d(0, calc(-100% - 14px), 0);
    opacity: 0.98;
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    margin: 6px 0;
}

 .logo img {
    max-width: 150px;
    height: auto;
    margin-top: 1px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.logo-text span {
    font-size: 16px;
    font-weight: 600;
    color: #3f3f3f
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #1f1f1f;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E5A900;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #e5a900;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(229, 169, 0, 0.24);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
}

.header-container {
    background-color: white;
    min-height: 100vh;
    padding: 130px 24px 34px;
    position: relative;
    overflow: hidden;
}

.hero-electric-line {
    position: absolute;
    inset: 92px auto auto 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.4;
}

.hero-electric-line span {
    display: block;
    height: 1px;
    margin: 16px 0;
    background: linear-gradient(90deg, rgba(229, 169, 0, 0) 0%, rgba(229, 169, 0, 0.45) 24%, rgba(229, 169, 0, 0.08) 68%, rgba(229, 169, 0, 0) 100%);
    animation: electricPulse 5.6s ease-in-out infinite;
}

.hero-electric-line span:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-electric-line span:nth-child(3) {
    animation-delay: 1.6s;
}

.header-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 40px;
    max-width: 1320px;
    margin: 0 auto;
}

.info-text {
    flex: 1;
    height: auto;
    margin-left: 2vi;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fff7df;
    color: #a87700;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.info-text p {
    color:#3f3f3f;
    font-size: 28px;
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: -0.8px;
    padding-right: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-primary {
    background: #1f1f1f;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(31, 31, 31, 0.16);
}

.hero-secondary {
    background: #fff8e6;
    color: #9b7400;
    border: 1px solid rgba(229, 169, 0, 0.22);
}

.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-2px);
}

.hero-strip {
    max-width: 1320px;
    margin: 40px auto 0;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-strip span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f7f7f7;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 600;
}

.hero-strip span:hover {
    background: #fff5d6;
    color: #a87700;
}

.hero-strip span {
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.hero-strip span:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(229, 169, 0, 0.14);
}

.info-image img {
    max-width: 100%;
    height: auto;
    width: min(35vw, 480px);
    object-fit: cover;
    margin: 0 2vi;
    filter: opacity(0.96);
    border-radius: 26px;
    animation: heroFloat 8s ease-in-out infinite;
}

.header-footer {
    text-align: center;
    margin-top: 34px;
}

.header-footer p {
    margin: 5px 0;
    font-size: 14px;
    font-weight: 400;
    color: #3f3f3f;
}

.header-footer a {
    color: #007bff;
    text-decoration: none;
}

.header-footer a:hover {
    text-decoration: underline;
}

.hero-scroll-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 14px;
    border: 0;

    background: #fff7df;
    color: #a87700;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
    animation: heroIndicatorBounce 1.9s ease-in-out infinite;
}

.hero-scroll-indicator i {
    font-size: 12px;
}

.hero-scroll-indicator:hover {
    color: #a87700;
}

.hero-scroll-indicator.is-hidden {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

@keyframes heroIndicatorBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

.blocks{
    display: flex;
    cursor: default;
    flex-direction: column;
    gap: 34px;
    margin: 90px 0;
}

.trust-band,
.process-section,
.specialties-section,
.qr-control-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 30px;
}

.trust-band {
    margin-top: 18px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trust-card {
    padding: 20px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 31, 31, 0.06);
    box-shadow: 0 16px 34px rgba(31, 31, 31, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(31, 31, 31, 0.1);
    border-color: rgba(229, 169, 0, 0.2);
}

.trust-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff3cf 0%, #ffe79d 100%);
    color: #9b7400;
    font-size: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.confidence-band {
    max-width: 1360px;
    margin: 34px auto 0;
    padding: 0 30px;
}

.confidence-shell {
    border-radius: 28px;
    padding: 28px 30px;
    background: linear-gradient(135deg, #1d1d1d 0%, #2b2b2b 100%);
    color: #ffffff;
    box-shadow: 0 26px 52px rgba(31, 31, 31, 0.14);
}

.section-head.left {
    max-width: 760px;
    margin: 0 0 26px;
    text-align: left;
}

.confidence-shell .section-copy,
.confidence-shell .section-kicker,
.confidence-shell h2 {
    color: #ffffff;
}

.confidence-shell h2,
.cta-banner h2 {
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    max-width: 980px;

}

.confidence-shell .section-copy {
    color: rgba(255,255,255,0.8);
    max-width: 760px;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.confidence-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.confidence-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffd76b;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.confidence-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.25;
}

.confidence-card p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.55;
}

.trust-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
}

.trust-card p {
    color: #596172;
    font-size: 15px;
    line-height: 1.5;
}

.section-head {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head.compact {
    margin-bottom: 24px;
}

.section-kicker {
    margin-bottom: 12px;
    color: #a87700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-copy {
    margin-top: 14px;
    color: #596172;
    font-size: 20px;
    line-height: 1.55;
}

.process-section {
    margin-top: 20px;
    margin-bottom: 34px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.process-card,
.specialty-box {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 31, 31, 0.06);
    box-shadow: 0 18px 40px rgba(31, 31, 31, 0.06);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #1f1f1f;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.process-card h3,
.specialty-box h3 {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.process-card p,
.specialty-box p {
    color: #596172;
    font-size: 16px;
    line-height: 1.55;
}

.specialties-section {
    margin-bottom: 60px;
}

.qr-control-section {
    margin-bottom: 42px;
}

.qr-control-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 28px 30px 30px;
    background:
        radial-gradient(circle at top right, rgba(229, 169, 0, 0.12), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f7f8fb 56%, #eef2f8 100%);
    border: 1px solid rgba(31, 31, 31, 0.06);
    box-shadow: 0 24px 56px rgba(31, 31, 31, 0.08);
}

.qr-control-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(31,31,31,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,31,31,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
    pointer-events: none;
}

.qr-control-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: center;
}

.qr-control-copy {
    position: relative;
    z-index: 1;
    max-width: none;
}

.qr-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    margin-top: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qr-benefit-card,
.qr-demo-card {
    border-radius: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 31, 31, 0.06);
    box-shadow: 0 18px 34px rgba(31, 31, 31, 0.05);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.qr-benefit-card:hover,
.qr-demo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(31, 31, 31, 0.08);
    border-color: rgba(229, 169, 0, 0.2);
}

.qr-benefit-card strong {
    display: block;
    margin-bottom: 10px;
    color: #1f1f1f;
    font-size: 18px;
    line-height: 1.2;
}

.qr-benefit-card p {
    color: #596172;
    font-size: 15px;
    line-height: 1.55;
}

.qr-demo-card {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 24px;
}

.qr-demo-inline {
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 320px;
}

.qr-demo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.qr-demo-top.compact {
    justify-content: flex-start;
    margin-bottom: 14px;
}

.qr-demo-top strong {
    color: #1f1f1f;
    font-size: 22px;
    line-height: 1.1;
}

.qr-demo-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff7df;
    color: #a87700;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.qr-demo-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
    align-items: center;
}

.qr-demo-device {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1f1f1f 0%, #313131 100%);
    color: #ffffff;
    box-shadow: 0 22px 42px rgba(17, 17, 17, 0.18);
}

.device-tag,
.qr-demo-footer span {
    display: inline-block;
    color: #a87700;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qr-demo-device h3 {
    margin: 12px 0 10px;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -1.2px;
}

.qr-demo-device p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.5;
}

.qr-demo-code {
    position: relative;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 44px rgba(31, 31, 31, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 252px;
    margin: 0 auto;
}

.qr-demo-code img:last-child {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 18px;
}

.qr-logo-wrap {
    position: absolute;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(31, 31, 31, 0.12);
}

.qr-logo-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.qr-inline-copy {
    margin: 16px 0 14px;
    color: #596172;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
}

.qr-demo-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 31, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.qr-demo-footer p {
    margin-top: 6px;
    color: #596172;
    font-size: 15px;
    line-height: 1.4;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.material-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff7df;
    color: #a87700;
    font-size: 13px;
    font-weight: 800;
}

.cta-banner {
    max-width: 1360px;
    margin: 0 auto 36px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) auto;
    gap: 20px;
    align-items: center;
    border-radius: 30px;
    background: linear-gradient(135deg, #1f1f1f 0%, #303030 65%, #111111 100%);
    color: #ffffff;
    box-shadow: 0 28px 60px rgba(17, 17, 17, 0.24);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    
        radial-gradient(circle at top right, rgba(255, 215, 107, 0.1), transparent 28%),
        linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    pointer-events: none;
}

.cta-banner .section-kicker,
.cta-banner h2,
.cta-banner .section-copy {
    color: #ffffff;
}

.cta-banner .section-copy {
    opacity: 0.82;
    max-width: 820px;
}

.cta-banner-copy,
.cta-banner-actions {
    position: relative;
    z-index: 1;
}

.cta-banner-actions {
    display: grid;
    gap: 12px;
    min-width: 210px;
}

.cta-banner .hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.mail-contact-section {
    max-width: 1360px;
    margin: 0 auto 56px;
    padding: 0 30px;
}

.mail-contact-accordion {
    border-radius: 26px;
    border: 1px solid rgba(31, 31, 31, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 48px rgba(31, 31, 31, 0.08);
    overflow: hidden;
}

.mail-contact-accordion summary {
    list-style: none;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
}

.mail-contact-accordion summary::-webkit-details-marker {
    display: none;
}

.mail-contact-accordion summary strong {
    display: block;
    margin-top: 4px;
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.mail-contact-accordion summary span:not(.accordion-icon) {
    color: #667085;
    font-size: 15px;
    line-height: 1.45;
}

.accordion-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff7df;
    color: #a87700;
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

.mail-contact-accordion[open] .accordion-icon {
    transform: rotate(180deg);
}

.mail-contact-body {
    padding: 0 26px 26px;
    border-top: 1px solid rgba(31, 31, 31, 0.06);
}

.mail-contact-form {
    padding-top: 22px;
}

.mail-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mail-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mail-span-2 {
    grid-column: 1 / -1;
}

.mail-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mail-contact-form input,
.mail-contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d8dde5;
    border-radius: 14px;
    background: #fcfcfd;
    color: #1f2937;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mail-contact-form input:focus,
.mail-contact-form textarea:focus {
    border-color: rgba(229, 169, 0, 0.55);
    box-shadow: 0 0 0 3px rgba(229, 169, 0, 0.12);
    background: #ffffff;
}

.mail-contact-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mail-contact-actions button:disabled {
    opacity: 0.75;
    cursor: wait;
}

.mail-contact-status {
    min-height: 24px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
}

.mail-contact-status.is-pending {
    color: #8b6a00;
}

.mail-contact-status.is-success {
    color: #0f7b44;
}

.mail-contact-status.is-error {
    color: #c43939;
}

.blocks-container{
    max-width: 1360px;
    margin: 0 auto;
    padding: 30px;
}

.block{
    display: flex;
    gap: 28px;
    box-sizing: border-box;
    border-radius: 28px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 31, 31, 0.05);
    box-shadow: 0 20px 48px rgba(31, 31, 31, 0.06);
}

.block01, .block02, .block03, .block04{
    flex: 2;
    max-width: 100%;
    width: 100%;
}

.tag{
    margin-left: 3px;
    margin-bottom: -10px;
    color: #9b7400;
}

.title{
    font-weight: 500;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2.5px;
    color: #1f1f1f;
}

.description p{
    margin: 0 20px 14px 0;
    font-size: 21px;
    line-height: 1.45;
    color: #3f3f3f;
}

.image-wrapper01, .image-wrapper03{
    flex: 1.5;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.image-wrapper01 img, .image-wrapper03 img{
    width: min(40vw, 520px);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(31, 31, 31, 0.12);
}

.image-wrapper02, .image-wrapper04{
    flex: 1.5;
    max-width: 100%;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.image-wrapper02 img, .image-wrapper04 img{
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(31, 31, 31, 0.12);
}

.footer {
    background-color: #000000;
    padding: 28px 22px 20px;
    border-radius: 26px 26px 0 0;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.22);
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    box-sizing: border-box;
    padding: 14px;
}

.large-column {
    flex: 2;
    min-width: 300px;
}

.small-column {
    flex: 1;
    min-width: 200px;
}

.services-columns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.services-columns .column {
    width: 48%;
    list-style: none;
    padding: 0;
}

.services-columns .column li {
    margin-bottom: 0.5em;
    white-space: nowrap;
}

.footer-column h5 {
    margin-bottom: 10px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    color: #adadad;
    font-weight: 300;
}

.footer-column ul li a {
    text-decoration: none;
    color: #adadad;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #E5A900;
}

.footer-bottom {
    text-align: left;
    padding-left: 14px;
    font-size: 14px;
    font-weight: 300;
    color: #adadadb1;
}

.social-icons {
    text-decoration: none;
    display: flex;
    gap: 10px;
    font-size: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes electricPulse {
    0%, 100% { opacity: 0.28; transform: scaleX(1); }
    50% { opacity: 0.55; transform: scaleX(1.02); }
}

@media (max-width: 980px) {
    h1 {
        font-size: 54px;
        letter-spacing: -2px;
    }

    .title {
        font-size: 48px;
        letter-spacing: -1.6px;
    }

    .navbar {
        padding: 12px 18px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links li {
        margin: 0;
    }

    .header-middle,
    .block {
        flex-direction: column;
    }

    .info-text,
    .block01, .block02, .block03, .block04 {
        width: 100%;
        margin-left: 0;
    }

    .info-text p {
        padding-right: 0;
    }

    .info-image img,
    .image-wrapper01 img,
    .image-wrapper03 img {
        width: 100%;
    }

    .image-wrapper02,
    .image-wrapper04 {
        margin-right: 0;
    }

    .trust-grid,
    .process-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .confidence-shell h2,
    .cta-banner h2 {
        max-width: none;
        font-size: clamp(32px, 5vw, 46px);
    }

    .confidence-shell .section-copy,
    .cta-banner .section-copy {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .info-image.hero-illustration {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-illustration-stage {
        width: min(82vw, 360px);
    }

    .hero-warning-aura {
        top: 10.6%;
        left: 55.8%;
        width: 24%;
        filter: blur(22px);
    }

    .hero-glow-wrap {
        animation-duration: 6s;
    }

    .hero-illustration-glow {
        inset: 0;
        width: 100% !important;
        height: auto !important;
    }
}

.site-intro-splash {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 252, 245, 0.58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-intro-glow {
    position: absolute;
    inset: 10% 18%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(229,169,0,0.16) 0%, rgba(229,169,0,0.05) 42%, rgba(255,255,255,0) 72%);
    filter: blur(18px);
    animation: introGlowPulse 2.6s ease-in-out infinite;
}

.site-intro-logo-wrap {
    position: relative;
    z-index: 1;
    width: min(72vw, 320px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introLogoIn 0.7s ease both;
}

.site-intro-logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 32px rgba(31, 31, 31, 0.10));
}

.site-intro-loading {
    overflow: hidden;
}

.site-intro-ready .site-intro-splash {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes introLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introGlowPulse {
    0%, 100% {
        opacity: 0.78;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

body.site-intro-loading > *:not(.site-intro-splash) {
    filter: blur(10px);
    transition: filter 0.38s ease, opacity 0.38s ease;
}

body.site-intro-leaving > *:not(.site-intro-splash) {
    filter: blur(3px);
}

.site-intro-splash {
    opacity: 1;
    visibility: visible;
}

body.site-intro-leaving .site-intro-splash {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

body.site-intro-ready > *:not(.site-intro-splash) {
    filter: none;
}

.mail-contact-section,
.cta-banner {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .mail-contact-section {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 36px;
    }

    .cta-banner {
        width: calc(100% - 60px);
    }
}

.hero-badge {
    font-size: 0.92rem;
    line-height: 1.35;
    max-width: 620px;
    padding: 10px 18px;
}

.hero-strip {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-strip > div,
.hero-strip,
.hero-strip-inner {
    width: 100%;
}

.hero-strip {
    justify-content: center;
}

.hero-strip span {
    text-align: center;
}

@media (min-width: 769px) {
    .hero-strip {
        justify-content: center;
    }
}

body.budget-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 860px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
    padding: 28px;
    transform: translateY(14px) scale(0.985);
    transition: transform 0.28s ease;
}

.contact-modal.is-open .contact-modal-dialog {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(31,31,31,0.1);
    background: #ffffff;
    color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.contact-modal-head h2 {
    margin: 4px 0 8px;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.04;
    letter-spacing: -1.2px;
}

.contact-modal-head p:last-child {
    color: #667085;
    max-width: 640px;
}

.contact-modal-form {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .info-image.hero-illustration {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-illustration-stage {
        width: min(82vw, 360px);
    }

    .hero-warning-aura {
        top: 10.6%;
        left: 55.8%;
        width: 24%;
        filter: blur(22px);
    }

    .hero-glow-wrap {
        animation-duration: 6s;
    }

    .hero-illustration-glow {
        inset: 0;
        width: 100% !important;
        height: auto !important;
    }
}

@media (min-width: 769px) {
    .mail-contact-section,
    .qr-control-section,
    .confidence-band,
    .process-section,
    .specialties-section,
    .trust-band {
        width: min(1360px, calc(100% - 60px));
        max-width: min(1360px, calc(100% - 60px));
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    .cta-banner {
        width: min(1300px, calc(100% - 120px));
        max-width: min(1300px, calc(100% - 120px));
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }
}



.qr-control-copy > .section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff7df;
    border: 1px solid rgba(229, 169, 0, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.qr-demo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-demo-top.compact {
    width: 100%;
    display: flex;
    justify-content: center;
}

.qr-demo-card .qr-demo-pill,
.qr-demo-card .qr-inline-copy,
.qr-demo-card .hero-secondary {
    text-align: center;
}

.qr-demo-card .hero-secondary {
    align-self: center;
}

@media (min-width: 769px) {
    .cta-banner {
        width: min(1360px, calc(100% - 60px)) !important;
        max-width: min(1360px, calc(100% - 60px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.nav-cta {
    border: 0 !important;
    outline: 0 !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 26px rgba(229, 169, 0, 0.22) !important;
}

.nav-cta:hover {
    border: 0 !important;
}

.hero-primary-button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.footer {
    position: relative;
    margin-top: 54px;
    padding: 0;
    background: linear-gradient(135deg, #0e1117 0%, #161b24 58%, #0f141d 100%);
    border-radius: 0;
    box-shadow: 0 -24px 60px rgba(15, 23, 42, 0.20);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(229, 169, 0, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
    opacity: 0.26;
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    width: min(1360px, calc(100% - 60px));
    margin: 0 auto;
    padding: 34px 0 22px;
}

.footer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand-lockup img {
    width: 148px;
    height: auto;
    display: block;
    filter: brightness(1.05);
}

.footer-kicker {
    margin: 0 0 4px;
    color: #e5a900;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-brand-lockup strong {
    display: block;
    max-width: 520px;
    color: #f5f7fb;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.footer-column {
    min-width: 0;
    padding: 0;
}

.footer-column h5 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-about-copy {
    margin: 0;
    color: rgba(226, 232, 240, 0.82);
    font-size: 18px;
    line-height: 1.65;
    max-width: 680px;
}

.footer-about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-about-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #f2f4f8;
    font-size: 13px;
    font-weight: 600;
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.services-columns .column,
.footer-contact-list,
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-columns .column li,
.footer-column ul li {
    margin-bottom: 12px;
}

.services-columns .column li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(226, 232, 240, 0.82);
    text-decoration: none;
    transition: color 0.24s ease, transform 0.24s ease;
}

.services-columns .column li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5a900, #f7c94b);
    box-shadow: 0 0 0 4px rgba(229, 169, 0, 0.12);
}

.services-columns .column li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(226, 232, 240, 0.82);
}

.footer-contact-list i {
    color: #e5a900;
    font-size: 15px;
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 169, 0, 0.5);
    background: rgba(229, 169, 0, 0.10);
    color: #f7c94b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    padding-left: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(226, 232, 240, 0.64);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #cfe2ff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom span {
    opacity: 0.45;
    margin: 0 8px;
}

.footer,
.footer * {
    border-radius: 0 !important;
}

@media (max-width: 980px) {
    .footer-shell {
        width: min(100%, calc(100% - 32px));
        padding: 28px 0 20px;
    }

    .footer-topbar,
    .footer-container,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        display: grid;
        gap: 24px;
    }

    .footer-brand-lockup {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-brand-lockup img {
        width: 132px;
    }

    .footer-brand-lockup strong {
        font-size: 19px;
    }

    .footer-bottom {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .info-image.hero-illustration {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-illustration-stage {
        width: min(82vw, 360px);
    }

    .hero-warning-aura {
        top: 10.6%;
        left: 55.8%;
        width: 24%;
        filter: blur(22px);
    }

    .hero-glow-wrap {
        animation-duration: 6s;
    }

    .hero-illustration-glow {
        inset: 0;
        width: 100% !important;
        height: auto !important;
    }
}

.footer {
    background: linear-gradient(180deg, #fffdf8 0%, #fbf7ee 100%);
    box-shadow: inset 0 1px 0 rgba(229, 169, 0, 0.10), 0 -18px 40px rgba(31, 31, 31, 0.06);
}

.footer::before {
    background:
        radial-gradient(circle at top right, rgba(229, 169, 0, 0.10), transparent 26%),
        linear-gradient(90deg, rgba(229, 169, 0, 0.05) 0, rgba(229, 169, 0, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(229, 169, 0, 0.05) 0, rgba(229, 169, 0, 0.05) 1px, transparent 1px);
    opacity: 0.35;
}

.footer-topbar,
.footer-bottom {
    border-color: rgba(31, 31, 31, 0.08);
}

.footer-kicker,
.footer-column h5 {
    color: #a87700;
}

.footer-brand-lockup strong {
    color: #1f1f1f;
}

.footer-about-copy,
.footer-contact-list li,
.services-columns .column li a,
.footer-bottom {
    color: #5c6472;
}

.footer-about-points span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 31, 31, 0.08);
    color: #303645;
    box-shadow: 0 8px 18px rgba(31, 31, 31, 0.04);
}

.services-columns .column li a::before {
    box-shadow: 0 0 0 4px rgba(229, 169, 0, 0.10);
}

.services-columns .column li a:hover,
.footer-bottom a:hover {
    color: #1f1f1f;
}

.footer-contact-list i {
    color: #d39b00;
}

.social-icon {
    border: 1px solid rgba(31, 31, 31, 0.10);
    background: rgba(255, 255, 255, 0.74);
    color: #1f1f1f;
    box-shadow: 0 10px 22px rgba(31, 31, 31, 0.06);
}

.social-icon:hover {
    border-color: rgba(229, 169, 0, 0.28);
    background: rgba(255, 247, 223, 0.96);
    color: #a87700;
}

.footer-backtop {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px 0 14px;
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.99), rgba(250,250,250,0.95));
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.07), inset 0 1px 0 rgba(255,255,255,0.82);
    color: #1f1f1f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 11px;
    font-weight: 800;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
    isolation: isolate;
    overflow: hidden;
}

.footer-backtop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(229, 169, 0, 0.08) 50%, transparent 82%);
    transform: translateX(-140%);
    transition: transform 0.55s ease;
    z-index: 0;
    pointer-events: none;
}

.footer-backtop i,
.footer-backtop span {
    position: relative;
    z-index: 1;
}

.footer-backtop i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 241, 198, 0.96), rgba(255, 248, 228, 0.90));
    color: #a97800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 6px 12px rgba(229, 169, 0, 0.14);
    font-size: 11px;
}

.footer-backtop span {
    white-space: nowrap;
}

.footer-backtop:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 169, 0, 0.24);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,249,236,0.97));
    box-shadow: 0 16px 34px rgba(31, 31, 31, 0.10), 0 0 0 1px rgba(229, 169, 0, 0.05), 0 0 18px rgba(229, 169, 0, 0.08);
    color: #151515;
}

.footer-backtop:hover::before {
    transform: translateX(140%);
}

.footer-shell {
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* --- Home hero polish: bloque mas unificado y badge mas sutil --- */
.header-middle {
    position: relative;
    padding: 34px 40px !important;
    border: 1px solid rgba(229, 169, 0, 0.10);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 58%, rgba(252,252,252,0.95) 100%);
    box-shadow:
        0 26px 60px rgba(31, 31, 31, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.72);
}

.header-middle::after {
    content: "";
    position: absolute;
    inset: auto 28px 0 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(229, 169, 0, 0) 0%, rgba(229, 169, 0, 0.18) 50%, rgba(229, 169, 0, 0) 100%);
}

.hero-badge {
    min-height: 0;
    margin-bottom: 14px;
    padding: 6px 12px !important;
    font-size: 0.82rem !important;
    line-height: 1.28;
    max-width: 520px;
    background: rgba(255, 247, 223, 0.96) !important;

    box-shadow: 0 10px 20px rgba(229, 169, 0, 0.08);
    color: #a87700 !important;
}

.info-text {
    margin-left: 0 !important;
    max-width: 740px;
}

.info-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 min(39vw, 520px);
}

.info-image img {
    width: min(36vw, 500px) !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .header-middle {
        padding: 28px 28px !important;
        gap: 20px;
    }

@media (max-width: 768px) {
    .info-image.hero-illustration {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-illustration-stage {
        width: min(82vw, 360px);
    }

    .hero-warning-aura {
        top: 10.6%;
        left: 55.8%;
        width: 24%;
        filter: blur(22px);
    }

    .hero-glow-wrap {
        animation-duration: 6s;
    }

    .hero-illustration-glow {
        inset: 0;
        width: 100% !important;
        height: auto !important;
    }
}


    .hero-badge {
        max-width: 440px;
        font-size: 0.76rem !important;
    }
}

@media (max-width: 768px) {
    .info-image.hero-illustration {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-illustration-stage {
        width: min(82vw, 360px);
    }

    .hero-warning-aura {
        top: 10.6%;
        left: 55.8%;
        width: 24%;
        filter: blur(22px);
    }

    .hero-glow-wrap {
        animation-duration: 6s;
    }

    .hero-illustration-glow {
        inset: 0;
        width: 100% !important;
        height: auto !important;
    }
}

/* hero freepik layered illustration override */
.info-image.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 min(43vw, 560px);
    min-width: 360px;
}

.hero-illustration-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(43vw, 560px);
    max-width: 100%;
    min-height: 100%;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-illustration-base {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    margin: 0 !important;
    border-radius: 0 !important;
    animation: none !important;
    filter: drop-shadow(0 26px 34px rgba(31, 31, 31, 0.10));
}

.hero-glow-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    animation: dangerFloat 5.4s ease-in-out infinite;
}

.hero-warning-aura {
    position: absolute;
    top: 10.8%;
    left: 56.4%;
    width: 25%;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 44%,
            rgba(238, 186, 24, 0.74) 0%,
            rgba(238, 186, 24, 0.46) 24%,
            rgba(238, 186, 24, 0.22) 48%,
            rgba(238, 186, 24, 0.08) 66%,
            rgba(238, 186, 24, 0) 82%),
        radial-gradient(circle at 52% 56%,
            rgba(255, 213, 92, 0.32) 0%,
            rgba(255, 213, 92, 0.12) 38%,
            rgba(255, 213, 92, 0) 72%);
    filter: blur(28px);
    opacity: .98;
    transform: translate3d(-50%, 0, 0) scale(1);
    transform-origin: 50% 50%;
    mix-blend-mode: multiply;
    animation: dangerAuraPulse 5.4s ease-in-out infinite;
}

.hero-illustration-glow {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: auto !important;
    opacity: 1;
    mix-blend-mode: normal;
    filter: drop-shadow(0 0 10px rgba(238, 186, 24, 0.36))
            drop-shadow(0 0 22px rgba(238, 186, 24, 0.22))
            drop-shadow(0 0 34px rgba(238, 186, 24, 0.12));
}

@keyframes dangerAuraPulse {
    0%, 100% {
        transform: translate3d(-50%, 0, 0) scale(1);
        opacity: .82;
    }
    50% {
        transform: translate3d(-50%, -0.5px, 0) scale(1.04);
        opacity: 1;
    }
}

@keyframes dangerFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-0.8deg) scale(1);
    }

    50% {
        transform: translate3d(0, -3px, 0) rotate(0.45deg) scale(1.01);
    }
}

@media (max-width: 1024px) {
    .info-image.hero-illustration {
        flex-basis: min(44vw, 500px);
        min-width: 300px;
    }

    .hero-illustration-stage {
        width: min(44vw, 500px);
    }
}

@media (max-width: 768px) {
    .info-image.hero-illustration {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-illustration-stage {
        width: min(82vw, 360px);
    }

    .hero-warning-aura {
        top: 10.6%;
        left: 55.8%;
        width: 24%;
        filter: blur(22px);
    }

    .hero-glow-wrap {
        animation-duration: 6s;
    }

    .hero-illustration-glow {
        inset: 0;
        width: 100% !important;
        height: auto !important;
    }
}

















/* final hero illustration layering override */
.hero-illustration-stage {
    position: relative !important;
    overflow: visible !important;
    isolation: isolate !important;
}

.hero-illustration-base {
    position: relative !important;
    z-index: 1 !important;
}

.hero-warning-aura {
    position: absolute !important;
    top: 10.8% !important;
    left: 56.4% !important;
    width: 25% !important;
    aspect-ratio: 1 / 1 !important;
    z-index: 3 !important;
    border-radius: 999px !important;
    pointer-events: none !important;
    background:
        radial-gradient(circle at 50% 44%, rgba(238,186,24,.62) 0%, rgba(238,186,24,.36) 24%, rgba(238,186,24,.16) 48%, rgba(238,186,24,.08) 66%, rgba(238,186,24,0) 82%),
        radial-gradient(circle at 52% 56%, rgba(255,213,92,.20) 0%, rgba(255,213,92,.12) 38%, rgba(255,213,92,0) 72%) !important;
    filter: blur(28px) !important;
    mix-blend-mode: multiply !important;
    animation: dangerAuraPulse 5.4s ease-in-out infinite !important;
}

.hero-illustration-glow {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: auto !important;
    z-index: 4 !important;
    opacity: 1 !important;
    pointer-events: none !important;
    animation: dangerFloat 5.4s ease-in-out infinite !important;
    filter: drop-shadow(0 0 7px rgba(238,186,24,.26))
            drop-shadow(0 0 22px rgba(238,186,24,.16))
            drop-shadow(0 0 24px rgba(238,186,24,.08)) !important;
}

@media (max-width: 768px) {
    .hero-warning-aura {
        top: 10.6% !important;
        left: 55.8% !important;
        width: 24% !important;
        filter: blur(22px) !important;
    }

    .hero-illustration-glow {
        animation-duration: 6s !important;
    }
}



/* final public-home hero tuning */
.hero-illustration-stage {
    position: relative !important;
    overflow: visible !important;
    isolation: isolate !important;
}

.hero-illustration-base {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    height: auto !important;
}

.hero-warning-aura {
    position: absolute !important;
    top: 11.2% !important;
    left: 58.1% !important;
    width: 22.5% !important;
    aspect-ratio: 1 / 1 !important;
    z-index: 3 !important;
    pointer-events: none !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 50% 46%, rgba(238,186,24,.56) 0%, rgba(238,186,24,.28) 24%, rgba(238,186,24,.12) 48%, rgba(238,186,24,.04) 68%, rgba(238,186,24,0) 82%),
        radial-gradient(circle at 52% 58%, rgba(255,213,92,.16) 0%, rgba(255,213,92,.08) 38%, rgba(255,213,92,0) 70%) !important;
    filter: blur(20px) !important;
    mix-blend-mode: multiply !important;
    animation: heroWarningAura 5.8s ease-in-out infinite !important;
}

.hero-illustration-glow {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: auto !important;
    z-index: 4 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    filter: drop-shadow(0 0 6px rgba(238,186,24,.20))
            drop-shadow(0 0 14px rgba(238,186,24,.12))
            drop-shadow(0 0 24px rgba(238,186,24,.08)) !important;
    animation: heroWarningFloat 5.8s ease-in-out infinite !important;
}

@keyframes heroWarningAura {
    0%,100% {
        transform: translate3d(-50%, 0, 0) scale(1);
        opacity: .72;
    }
    50% {
        transform: translate3d(-50%, -2px, 0) scale(1.03);
        opacity: .88;
    }
}

@keyframes heroWarningFloat {
    0%,100% {
        transform: translate3d(0, 0, 0) rotate(-0.45deg) scale(1);
    }
    50% {
        transform: translate3d(0, -2px, 0) rotate(0.35deg) scale(1.008);
    }
}

@media (max-width: 768px) {
    .header-middle {
        gap: 18px !important;
        padding: 22px 18px 18px !important;
    }

    .hero-badge {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        padding: 10px 18px !important;
    }

    .info-text h1,
    .specialties-section .section-head h2,
    .process-section .section-head h2,
    .confidence-shell .section-head h2,
    .qr-control-copy h2,
    .cta-banner-copy h2 {
        font-size: clamp(2.25rem, 8.9vw, 3.35rem) !important;
        line-height: 0.98 !important;
        letter-spacing: 0 !important;
    }

    .info-text p,
    .section-copy,
    .specialty-box p,
    .trust-card p,
    .confidence-card p,
    .process-card p,
    .qr-benefit-card p {
        font-size: 1rem !important;
        line-height: 1.45 !important;
    }

    .info-image.hero-illustration {
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-illustration-stage {
        width: min(92vw, 430px) !important;
        margin: 0 auto !important;
    }

    .hero-warning-aura {
        top: 11.1% !important;
        left: 57.5% !important;
        width: 22% !important;
        filter: blur(18px) !important;
    }
}

/* Work orders + tech dashboard */
.work-priority-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.priority-low { background: #eef6ff; color: #2563eb; }
.priority-normal { background: #f7f4ea; color: #8d6911; }
.priority-high { background: #fff2e2; color: #d97706; }
.priority-critical { background: #ffe4e6; color: #dc2626; }

.technician-dashboard-card,
.tech-home-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.technician-hours-pill,
.tech-home-hours {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(218, 166, 47, 0.12);
    color: #8d6911;
    font-weight: 700;
}

.tech-home-card {
    padding: 18px;
}

.tech-home-stat {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
}

.tech-home-stat strong {
    display: block;
    font-size: 1.25rem;
    color: #111827;
}

.tech-home-stat span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.tech-home-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff8e1;
    color: #8d6911;
    font-weight: 600;
}

.work-order-read-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px 16px;
    background: #f9fafb;
}

.work-order-read-card span,
.work-print-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
}

.work-order-read-card strong {
    display: block;
    color: #111827;
}

.work-order-photo-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.work-order-photo-card span.material-symbols-outlined {
    color: #c9971d;
}

.work-order-readonly-pill {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    width: 100%;
    padding: 0 16px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 600;
}

.work-order-print-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
}

.work-order-print-hero h1 {
    margin: 8px 0 10px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
}

.work-print-box {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #111827;
}

@media (max-width: 1100px) {
    .work-order-print-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Public why EMIO mini block */
.why-emio-mini {
    width: min(1360px, calc(100% - 60px));
    max-width: min(1360px, calc(100% - 60px));
    margin: 34px auto 0;
}

.why-emio-mini-shell {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,248,239,0.96));
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 36px;
    padding: 34px;
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.06);
}

.why-emio-mini-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.why-emio-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.why-emio-mini-card {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid #ece7d2;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
}

.why-emio-mini-card strong {
    display: block;
    margin: 14px 0 10px;
    font-size: 1.2rem;
    color: #111827;
}

.why-emio-mini-card p {
    color: #59627a;
    line-height: 1.7;
}

@media (max-width: 920px) {
    .why-emio-mini-grid {
        grid-template-columns: 1fr;
    }
}



.client-logo-marquee {
    padding: 12px 24px 0;
}

.client-logo-marquee__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 24px;
    border: 1px solid rgba(229, 169, 0, 0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 249, 235, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 18px 36px rgba(31, 31, 31, 0.05);
    overflow: hidden;
}

.client-logo-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0;
    animation: clientLogoLoop 28s linear infinite;
    will-change: transform;
}

.client-logo-marquee__group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    gap: 56px;
    padding-right: 56px;
}

.client-logo-marquee__item {
    flex: 0 0 auto;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-marquee__item img {
    max-width: 100%;
    width: auto;
    height: 42px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.02);
    opacity: 0.9;
}

@keyframes clientLogoLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
    to {
        transform: translateX(calc(-50% - 28px));
    }
}

.client-logo-marquee__inner:hover .client-logo-marquee__track {
    animation-play-state: paused;
}

@media (max-width: 900px) {
    .client-logo-marquee {
        padding: 8px 14px 0;
    }

    .client-logo-marquee__inner {
        padding: 14px 18px;
        border-radius: 18px;
    }

    .client-logo-marquee__group {
        gap: 28px;
        padding-right: 28px;
    }

    .client-logo-marquee__item {
        min-width: 128px;
    }

    .client-logo-marquee__item img {
        height: 30px;
    }
}


\.client-logo-marquee__item--cooperativa {
    min-width: 300px;
    overflow: visible;
}

.client-logo-marquee__item--cooperativa img {
    height: 62px;
    filter: grayscale(1) contrast(1.02);
    opacity: 0.96;
    transform: none;
    transform-origin: center center;
}


@media (max-width: 900px) {
    .client-logo-marquee__item--cooperativa {
        min-width: 200px;
    }

    .client-logo-marquee__item--cooperativa img {
        height: 42px;
        transform: none;
    }
}





.client-logo-marquee__item--mostaza {
    min-width: 132px;
}

.client-logo-marquee__item--mostaza img {
    height: 52px;
    filter: grayscale(1) contrast(1.02);
    opacity: 0.96;
}

@media (max-width: 900px) {
    .client-logo-marquee__item--mostaza {
        min-width: 108px;
    }

    .client-logo-marquee__item--mostaza img {
        height: 38px;
    }
}





