/* ===== COMMON UTILS ===== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
}
.section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    line-height: 1.2;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

.header-platform-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    body.page-home header .header-content {
        justify-content: flex-start;
    }

    body.page-home header nav {
        justify-content: flex-start;
        margin-right: auto;
    }

    body.page-home .header-platform-actions {
        margin-left: auto;
    }
}

.platform-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.platform-action:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
}

.platform-action.is-illumiq {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    box-shadow: 0 8px 18px rgba(246, 144, 32, 0.18);
}

.platform-action.is-energy {
    background: linear-gradient(135deg, var(--energy-green) 0%, var(--energy-green-dark) 100%);
    box-shadow: 0 8px 18px rgba(0, 208, 132, 0.18);
}

.platform-action.is-tarifas {
    background: linear-gradient(135deg, var(--tarifas-blue) 0%, var(--tarifas-blue-dark) 100%);
    box-shadow: 0 8px 18px rgba(112, 163, 204, 0.22);
}

body.page-home header nav .mobile-nav-cta.is-energy {
    background: linear-gradient(135deg, var(--energy-green) 0%, var(--energy-green-dark) 100%);
}

body.page-home header nav .mobile-nav-cta.is-tarifas {
    background: linear-gradient(135deg, var(--tarifas-blue) 0%, var(--tarifas-blue-dark) 100%);
}

body.page-home .logo-divider {
    width: 1px;
    height: 42px;
    background: var(--border);
}

body.page-home .logo-dna-usp {
    width: 55px;
    height: auto;
    object-fit: contain;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FC 48%, #EAF3FA 100%);
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: \'\';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 163, 204, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: \'\';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(3,43,75,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-brand-lockup {
    width: min(100%, 520px);
    margin: 0 auto 2.35rem;
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-logo-pair {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    max-width: 100%;
}

.hero-logo-full {
    width: min(100%, 300px);
    height: auto;
    max-height: 72px;
    object-fit: contain;
    margin: 0;
}

.hero-logo-divider {
    width: 1px;
    height: 58px;
    background: var(--border);
    flex: 0 0 auto;
}

.hero-logo-dna-usp {
    width: 72px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--tarifas-blue-soft);
    border: 1px solid var(--tarifas-blue-border);
    color: var(--tarifas-blue-dark);
    font-size: clamp(0.62rem, 1.4vw, 0.72rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0;
    width: auto;
    max-width: 100%;
    justify-content: center;
    white-space: nowrap;
}

.eyebrow-icon {
    color: var(--tarifas-blue);
    font-size: 1em;
    line-height: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight { color: var(--brand-orange); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* ===== O QUE FAZEMOS ===== */
.services {
    padding: 5.5rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: rgba(255,140,0,0.25);
    background: white;
}
.service-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255,140,0,0.1);
    color: var(--brand-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
}
.service-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}
.service-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== PLATAFORMAS ATUAIS ===== */
.products {
    padding: 5.5rem 2rem;
    background: var(--bg-page);
    border-top: 1px solid var(--border);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.product-card {
    --product-accent: var(--brand-orange);
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
}

.product-card:nth-child(1) { --product-accent: var(--illumiq-accent); }
.product-card:nth-child(2) { --product-accent: var(--energy-blue); }
.product-card:nth-child(3) { --product-accent: var(--tarifas-blue); }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: color-mix(in srgb, var(--product-accent) 34%, var(--border));
}

.product-card-header {
    padding: 2.5rem 2rem 0;
}


.product-icon {
    width: 100%;
    height: 126px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 1.15rem;
    margin-bottom: 1.5rem;
}

.product-icon svg {
    width: 28px;
    height: 28px;
}

.product-icon.illumiq {
    background: linear-gradient(135deg, rgba(246,144,32,0.11), rgba(255,255,255,0.92));
}

.product-icon.energy {
    background: linear-gradient(135deg, rgba(0,208,132,0.10), rgba(240,249,255,0.96));
}

.product-icon.tarifas {
    background: linear-gradient(135deg, rgba(112,163,204,0.16), rgba(245,249,252,0.96));
}

.product-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.product-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--product-accent);
    margin-bottom: 1rem;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-card-body {
    padding: 0 2rem;
    flex: 1;
}

.product-features {
    list-style: none;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.product-features li {
    padding: 0.4rem 0 0.4rem 1.6rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
}

.product-card-footer {
    padding: 1.2rem 2rem 2rem;
    margin-top: auto;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--product-accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.product-link:hover { gap: 0.8rem; color: var(--product-accent); }
.product-link::after { content: '→'; }

/* ===== POR QUE A ILLUMINATIO ===== */
.differentials {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, #F0F4FF 0%, #FFFFFF 50%, #FFF8F0 100%);
    border-top: 1px solid var(--border);
}

.diff-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 8px 16px -4px rgba(0,0,0,0.04);
    animation: fadeInUp 0.6s ease-out;
    text-align: center;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.03), 0 12px 24px -6px rgba(0,0,0,0.06);
    border-color: var(--brand-blue);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,140,0,0.08);
    color: var(--brand-orange);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.diff-icon svg { width: 32px; height: 32px; }

.diff-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== COMO TRABALHAMOS ===== */
.workflow {
    padding: 5.5rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
}
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 8px 16px -4px rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: left;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.03), 0 12px 24px -6px rgba(0,0,0,0.06);
    border-color: var(--brand-blue);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--border);
    margin-bottom: 1rem;
    line-height: 1;
}
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tech-stack {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
    border-top: 1px solid var(--brand-navy-deep);
}
.tech-stack .section-eyebrow {
    color: var(--brand-gold);
}
.tech-stack h2, .tech-stack p {
    color: white;
}
.tech-badges {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.tech-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tech-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.numbers {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #111827 100%);
    color: white;
}

.numbers .section-header h2 { color: white; }
.numbers .section-header p { color: rgba(255,255,255,0.65); }

.numbers-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.number-card {
    text-align: center;
    padding: 1.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s;
}

.number-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,140,0,0.2);
}

.number-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--brand-orange);
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

.number-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* ===== CONTACT ===== */
.home-contact {
    padding: 6rem 2rem;
    background: var(--bg-soft);
    text-align: center;
}

.home-contact .section-header {
    max-width: 820px;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 10px 25px rgba(3, 43, 75, 0.04);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text-main);
    font: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--page-link-accent);
    box-shadow: 0 0 0 3px var(--page-accent-soft);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-main);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.footer-brand img { width: 30px; height: 30px; object-fit: contain; }

.footer-brand-text {
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.footer-brand-text span { color: var(--brand-orange); }

.footer-section h4 {
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 2;
    display: block;
    transition: color 0.2s;
}

.footer-section a:hover { color: var(--brand-orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

.footer-bottom img {
    height: 26px;
    object-fit: contain;
    opacity: 0.4;
    filter: brightness(10);
}

/* ===== HOME HERO SHOWCASE ===== */
.home-hero-showcase {
    width: min(100%, 820px);
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.home-hero-module {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(3, 43, 75, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(3, 43, 75, 0.07);
    padding: 1rem;
    text-align: left;
    backdrop-filter: blur(12px);
}

.home-hero-module::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--module-accent, var(--page-accent));
}

.home-hero-module.is-illumiq { --module-accent: var(--brand-orange); }
.home-hero-module.is-energy { --module-accent: var(--energy-green); }
.home-hero-module.is-tarifas { --module-accent: var(--tarifas-blue); }

.home-hero-kicker {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.home-hero-module strong {
    display: block;
    color: var(--brand-navy);
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.home-hero-module p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.home-hero-bars {
    display: grid;
    gap: 0.35rem;
}

.home-hero-bars i {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--module-accent, var(--page-accent)) 22%, #ffffff);
}

.home-hero-bars i:nth-child(2) { width: 74%; }
.home-hero-bars i:nth-child(3) { width: 52%; }

body.page-home .step-number {
    color: color-mix(in srgb, var(--page-accent) 58%, #ffffff) !important;
}

body.page-home .number-value {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    word-break: keep-all;
}

body.page-home .product-icon img {
    width: min(100%, 230px) !important;
    height: auto !important;
    max-height: 74px;
    object-fit: contain;
}

body.page-home .product-icon.energy img {
    width: min(100%, 270px) !important;
    max-height: 86px;
}

body.page-home .product-icon.tarifas img {
    width: min(100%, 300px) !important;
    max-height: 92px;
}

body.page-home .footer-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

body.page-home .footer-bottom .footer-logo {
    height: 30px;
    width: auto;
    opacity: 0.72;
    filter: none !important;
}

body.page-home .footer-address {
    margin-top: 0.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-platform-actions { gap: 0.35rem; }
    .platform-action { padding: 0.52rem 0.68rem; font-size: 0.86rem; }
    .services-grid { grid-template-columns: 1fr; }
    .workflow-line { display: none; }
    .workflow-steps { flex-direction: column; gap: 2rem; }
    .workflow-step { width: 100%; flex-direction: row; text-align: left; }
    .workflow-step-icon { width: 60px; height: 60px; }
    .workflow-step-icon svg { width: 28px; height: 28px; }
}

@media (max-width: 900px) {
    .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .diff-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .home-hero-showcase { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 860px) {
    .header-platform-actions { display: none; }
}

@media (max-width: 640px) {
    nav { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .hero-logo-full { height: 38px; }
    .hero-logo-pair { gap: 0.8rem; }
    .hero-logo-divider { height: 42px; }
    .hero-logo-dna-usp { width: 50px; }
    .section-header h2 { font-size: 1.8rem; }
    .contact-form { padding: 1.5rem; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 520px) {
    body.page-home .logo {
        gap: 0.5rem;
    }

    body.page-home .logo-divider {
        height: 34px;
    }

    body.page-home .logo-dna-usp {
        width: 42px;
    }

    body.page-home .eyebrow {
        display: inline-flex;
        max-width: 100%;
        white-space: nowrap;
        justify-content: center;
        text-align: center;
        line-height: 1.25;
        overflow-wrap: normal;
    }

    body.page-home .hero-logo-full {
        height: auto !important;
        max-height: 42px;
        max-width: 220px;
    }

    body.page-home .hero-logo-dna-usp {
        width: 44px;
    }

    body.page-home .numbers-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 380px) {
    body.page-home .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.page-home .hero-logo-full {
        max-width: 190px;
    }

    body.page-home .hero-logo-pair {
        gap: 0.65rem;
    }

    body.page-home .hero-logo-divider {
        height: 36px;
    }

    body.page-home .hero-logo-dna-usp {
        width: 38px;
    }

    body.page-home .eyebrow {
        width: auto;
        padding: 0.45rem 0.75rem;
        border-radius: 14px;
    }

    body.page-home .home-hero-showcase {
        margin-top: 2.2rem;
        gap: 0.75rem;
    }

    body.page-home .home-hero-module {
        padding: 0.85rem;
    }

    body.page-home .service-card,
    body.page-home .product-card,
    body.page-home .diff-card,
    body.page-home .step-card,
    body.page-home .number-card {
        padding: 1.25rem;
    }
}
