:root {
    --navy: #0f172a;
    --blue: #102757;
    --orange: #f97316;
    --orange-2: #ea580c;
    --muted: #64748b;
    --line: #dbe4f0;
    --soft: #f8fbff;
    --cream: #fff7ed;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--navy);
    background: linear-gradient(180deg, #fffaf3 0%, #f8fbff 38%, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1220px, calc(100% - 32px));
    margin-inline: auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(16, 39, 87, .1);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
    backdrop-filter: blur(22px);
}

/* Shared header layout for exported homepage markup reused on subpages. */
.topbar .container-xl {
    max-width: 1280px;
}

.topbar .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.topbar-main,
.topbar .d-flex {
    display: flex;
}

.topbar-main {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar .align-items-center {
    align-items: center;
}

.topbar .justify-content-between {
    justify-content: space-between;
}

.topbar .gap-3 {
    gap: 1rem;
}

.topbar .gap-4 {
    gap: 1.5rem;
}

.topbar .flex-column {
    flex-direction: column;
}

.topbar .lh-sm {
    line-height: 1.25;
}

.topbar .mt-2 {
    margin-top: .35rem;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.topbar .brand img {
    width: 220px;
    max-width: 220px;
    height: auto;
}

.nav-link-vomal {
    position: relative;
    color: #334155;
    font-weight: 800;
    white-space: nowrap;
}

.nav-link-vomal:hover {
    color: var(--orange);
}

.nav-link-vomal::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), #2563eb);
    transition: width .22s ease;
}

.nav-link-vomal:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform .22s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 280px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, .95);
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 248, 255, .96));
    box-shadow: 0 24px 54px rgba(15, 23, 42, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 80;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    color: #334155;
    font-weight: 800;
    line-height: 1.45;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(219, 234, 254, .9));
    color: #0f172a;
    transform: translateX(2px);
}

.nav-dropdown-item small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: .8rem;
    font-weight: 600;
}

.topbar .text-end {
    text-align: right;
}

.topbar .small {
    font-size: .875rem;
}

.topbar .text-muted {
    color: #64748b;
}

.topbar .fw-bold {
    font-weight: 800;
}

.topbar .btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, .16);
    background: linear-gradient(135deg, rgba(255, 247, 237, .9), rgba(219, 234, 254, .78));
    color: var(--blue);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.topbar .btn-outline-secondary:hover {
    transform: translateY(-2px);
}

.topbar .btn-vomal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange) 0%, #fb923c 34%, #2563eb 100%);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .18), 0 12px 24px rgba(249, 115, 22, .2);
}

.mobile-quicknav {
    display: none;
}

.topbar .d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .topbar .d-lg-flex {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    .topbar {
        min-height: 56px;
    }

    .topbar .container-xl {
        width: min(100%, calc(100% - 24px));
    }

    .topbar .py-3 {
        padding-top: .45rem;
        padding-bottom: .35rem;
    }

    .topbar-main {
        min-height: 44px;
    }

    .topbar .brand img {
        width: 156px;
        max-width: 156px;
    }

    .mobile-quicknav {
        display: block;
        position: sticky;
        top: 56px;
        z-index: 49;
        background: rgba(255, 255, 255, .92);
        border-bottom: 1px solid rgba(226, 232, 240, .85);
        backdrop-filter: blur(12px);
    }

    .mobile-quicknav-inner {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 6px 12px 7px;
        scrollbar-width: none;
    }

    .mobile-quicknav-inner::-webkit-scrollbar {
        display: none;
    }

    .mobile-quicknav a {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 11px;
        border-radius: 999px;
        border: 1px solid rgba(209, 220, 235, .95);
        background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 248, 255, .94));
        color: #334155;
        font-size: .82rem;
        font-weight: 800;
        white-space: nowrap;
        box-shadow: 0 10px 20px rgba(15, 23, 42, .05);
    }
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: var(--blue);
}

.brand-mark {
    position: relative;
    width: 52px;
    height: 34px;
}

.brand-mark::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--blue);
    transform: skewX(-18deg);
}

.brand-mark::after,
.brand-mark span::before {
    content: "";
    position: absolute;
    left: 13px;
    border-radius: 999px;
}

.brand-mark::after {
    top: 5px;
    width: 42px;
    height: 9px;
    background: var(--orange);
}

.brand-mark span::before {
    top: 16px;
    width: 42px;
    height: 7px;
    background: var(--blue);
}

.brand-text {
    font-size: 1.75rem;
    letter-spacing: .04em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 800;
    color: #334155;
}

.desktop-nav a:hover,
.mail-link:hover {
    color: var(--orange);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 270px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(15, 23, 42, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 11px 13px;
    border-radius: 14px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #fff7ed, #eef5ff);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mail-link {
    color: var(--blue);
    font-weight: 800;
    font-size: .92rem;
}

.mobile-nav {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange) 0%, #fb923c 40%, #1d4ed8 100%);
    box-shadow: 0 18px 38px rgba(249, 115, 22, .22), 0 16px 32px rgba(29, 78, 216, .16);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .12);
}

.btn-muted {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--blue);
}

.btn-wide {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 18% 16%, rgba(249, 115, 22, .34), transparent 24%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, .2), transparent 30%),
        linear-gradient(135deg, #071024 0%, #102757 52%, #0f172a 100%);
    border-bottom-left-radius: 54px;
    border-bottom-right-radius: 54px;
    box-shadow: 0 34px 90px rgba(2, 6, 23, .25);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 74% 22%, rgba(249, 115, 22, .20), transparent 30%),
        radial-gradient(circle at 18% 80%, rgba(59, 130, 246, .16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0) 54%);
    opacity: 1;
    filter: none;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 16, 36, .88) 0%, rgba(16, 39, 87, .66) 45%, rgba(15, 23, 42, .26) 100%),
        radial-gradient(circle at 18% 16%, rgba(249, 115, 22, .24), transparent 28%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .75fr);
    gap: 56px;
    align-items: center;
    padding-block: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: .55rem .95rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, .2);
    background: linear-gradient(135deg, #fff7ed, #eef5ff);
    color: #c2410c;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #fed7aa;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
}

.hero h1 {
    margin: 22px 0 18px;
    max-width: 12.6ch;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .9;
    letter-spacing: -.055em;
    font-weight: 900;
}

.hero p {
    max-width: 39rem;
    color: #dbeafe;
    font-size: 1.08rem;
    line-height: 1.82;
}

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

.hero-points span {
    display: inline-flex;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
}

.hero-panel .panel-card,
.value-promise {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 40px;
    background: radial-gradient(circle at 8% 0, rgba(249, 115, 22, .24), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 34px 88px rgba(2, 6, 23, .28);
    backdrop-filter: blur(16px);
}

.hero-panel span,
.value-promise span {
    color: #fdba74;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
}

.hero-panel h2,
.value-promise h3 {
    margin: 16px 0 10px;
    font-size: clamp(1.5rem, 2.7vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.section,
.calculator-section {
    padding-block: 86px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2,
.section-copy h2 {
    margin: 16px 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 900;
}

.section-heading p,
.section-copy p {
    color: #475569;
    font-size: 1.06rem;
    line-height: 1.9;
}

.calc-grid,
.value-grid,
.faq-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(380px, 1fr);
    gap: 48px;
    align-items: start;
}

.calc-card,
.info-card,
.step-card,
.footer-card,
.legal-card {
    border: 1px solid rgba(16, 39, 87, .1);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 250, 255, .95));
    box-shadow: 0 24px 62px rgba(15, 23, 42, .08);
}

.calc-card {
    padding: 28px;
}

.calc-intro {
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 30px;
    color: #fff;
    background: radial-gradient(circle at 12% 0, rgba(255, 255, 255, .24), transparent 32%),
        linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 42%, var(--blue) 100%);
}

.calc-intro span,
.estimate span {
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .75rem;
}

.calc-intro h3 {
    margin: 10px 0;
    font-size: 1.75rem;
}

.field-block,
.area-input {
    display: block;
    margin-bottom: 22px;
}

.field-block h4,
.area-input span,
.lead-form label span {
    display: block;
    margin-bottom: 9px;
    font-weight: 900;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    border: 1px solid rgba(16, 39, 87, .12);
    border-radius: 999px;
    padding: 12px 15px;
    background: #fff;
    color: #334155;
    font-weight: 850;
    cursor: pointer;
}

.chip.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--orange), #fb923c 38%, #1d4ed8);
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8fafc;
    padding: 15px 16px;
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #fb923c;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, .14);
}

.estimate {
    margin: 24px 0;
    padding: 22px;
    border-radius: 26px;
    color: #fff;
    background: #0f172a;
}

.estimate strong {
    display: block;
    margin: 8px 0;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.estimate small {
    color: #cbd5e1;
    line-height: 1.7;
}

.cards {
    display: grid;
    gap: 24px;
}

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

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

.info-card,
.step-card,
.legal-card {
    padding: 28px;
}

.info-card .icon,
.step-card span {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    font-weight: 900;
}

.info-card h3,
.step-card h3 {
    margin: 18px 0 10px;
    font-size: 1.22rem;
    font-weight: 900;
}

.info-card p,
.step-card p,
.legal-card p {
    color: #475569;
    line-height: 1.82;
}

.info-card a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--blue);
    font-weight: 900;
}

.value-section {
    background: radial-gradient(circle at 8% 10%, rgba(249, 115, 22, .16), transparent 26%),
        radial-gradient(circle at 92% 22%, rgba(37, 99, 235, .12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.value-promise {
    color: #fff;
    background: radial-gradient(circle at 8% 0, rgba(249, 115, 22, .24), transparent 34%),
        linear-gradient(135deg, #0b1227 0%, #102757 58%, #1d4ed8 100%);
}

.value-promise p {
    color: #dbeafe;
}

.dark-section {
    color: #fff;
    background: #020617;
}

.dark-section .section-heading p {
    color: #cbd5e1;
}

.realization-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(12, 18, 39, .94), rgba(22, 34, 70, .92));
}

.realization-card h3,
.realization-card p,
.realization-card span {
    margin-inline: 24px;
}

.realization-card h3 {
    margin-top: 22px;
}

.realization-card p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 24px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.before-after img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.faq-grid {
    align-items: start;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 900;
}

.faq-list p {
    margin: 0;
    padding: 0 22px 22px;
    color: #475569;
    line-height: 1.8;
}

.footer {
    padding-block: 78px 32px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    border-top: 1px solid var(--line);
}

.footer-card {
    padding: 30px;
}

.footer-card h2 {
    margin: 14px 0;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.footer-card p {
    color: #475569;
    line-height: 1.8;
}

.commitment {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #0f172a, #102757);
}

.commitment p {
    margin-bottom: 0;
    color: #cbd5e1;
}

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

.lead-form {
    display: grid;
    gap: 16px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    line-height: 1.6;
}

.consent input {
    width: auto;
    margin-top: 5px;
}

.alert-success,
.alert-error {
    padding: 13px 15px;
    border-radius: 16px;
    font-weight: 800;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding-top: 34px;
    color: #64748b;
    font-weight: 800;
}

.subhero {
    padding-block: 98px;
    color: #fff;
    background: linear-gradient(135deg, #071024 0%, #102757 58%, #0f172a 100%);
    border-bottom-left-radius: 44px;
    border-bottom-right-radius: 44px;
}

.subhero h1 {
    max-width: 820px;
    margin: 18px 0;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.subhero p {
    max-width: 720px;
    color: #dbeafe;
    line-height: 1.8;
    font-size: 1.08rem;
}

.cookie-box {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 80;
    max-width: 380px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 62px rgba(15, 23, 42, .18);
}

.cookie-box p {
    color: #475569;
    line-height: 1.65;
}

.cookie-box.hidden,
.hidden {
    display: none !important;
}

@media (max-width: 1050px) {
    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .mobile-nav {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 16px 12px;
    }

    .mobile-nav a {
        flex: 0 0 auto;
        padding: 9px 13px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: #fff;
        font-weight: 850;
    }

    .hero-grid,
    .calc-grid,
    .value-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards-4,
    .cards-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .nav {
        min-height: 58px;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .brand-mark {
        transform: scale(.78);
        transform-origin: left center;
    }

    .hero {
        min-height: auto;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .hero::before {
        opacity: .28;
        background-position: 62% center;
    }

    .hero::after {
        background:
            linear-gradient(90deg, rgba(7, 16, 36, .99) 0%, rgba(16, 39, 87, .95) 70%, rgba(15, 23, 42, .82) 100%),
            radial-gradient(circle at 18% 16%, rgba(249, 115, 22, .22), transparent 30%);
    }

    .hero-grid {
        padding-block: 46px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.15rem, 10vw, 3.1rem);
        line-height: 1.02;
    }

    .hero-panel .panel-card {
        padding: 24px;
        border-radius: 28px;
    }

    .section,
    .calculator-section {
        padding-block: 56px;
    }

    .cards-4,
    .cards-3,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .calc-card,
    .info-card,
    .step-card,
    .footer-card,
    .legal-card {
        padding: 22px;
        border-radius: 26px;
    }

    .cookie-box {
        left: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
    }
}
/* Fine-tune the homepage hero calculator so it sits closer to the visual center. */
@media (min-width: 992px) {
    body.vomal-redesign .hero .row {
        align-items: center !important;
    }

    body.vomal-redesign .hero-panel {
        transform: translateY(-22px);
    }
}

@media (min-width: 1200px) {
    body.vomal-redesign .hero-panel {
        transform: translateY(-32px);
    }
}

@media (max-width: 991.98px) {
    body.vomal-redesign .hero-panel {
        transform: none;
    }
}

/* Final homepage hero override for the exported VOMAL design. */
body.vomal-redesign .hero {
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(249, 115, 22, .32), transparent 25%),
        radial-gradient(circle at 76% 20%, rgba(96, 165, 250, .24), transparent 30%),
        radial-gradient(circle at 54% 78%, rgba(255, 255, 255, .08), transparent 34%),
        linear-gradient(135deg, #101a35 0%, #14346d 48%, #1f4fa8 100%) !important;
    background-size: auto, auto, auto, auto !important;
    background-position: center, center, center, center !important;
    background-repeat: no-repeat !important;
    background-blend-mode: normal !important;
}

body.vomal-redesign .hero::before {
    content: "" !important;
    position: absolute !important;
    inset: -12% -10% auto auto !important;
    width: 36vw !important;
    height: 36vw !important;
    min-width: 320px !important;
    min-height: 320px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(249, 115, 22, .16), rgba(249, 115, 22, 0) 68%) !important;
    filter: blur(10px) !important;
    opacity: 1 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

body.vomal-redesign .hero::after {
    content: "" !important;
    position: absolute !important;
    left: -12% !important;
    bottom: -26% !important;
    width: 34vw !important;
    height: 34vw !important;
    min-width: 280px !important;
    min-height: 280px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(59, 130, 246, .15), rgba(59, 130, 246, 0) 70%) !important;
    filter: blur(14px) !important;
    opacity: 1 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

body.vomal-redesign .hero-grid {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    align-items: initial !important;
    padding: 0 !important;
    opacity: .08 !important;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px) !important;
    background-size: 44px 44px !important;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .25)) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

body.vomal-redesign .hero-lines,
body.vomal-redesign .hero-orbit {
    z-index: 2 !important;
}

body.vomal-redesign .hero > .container {
    position: relative !important;
    z-index: 3 !important;
}

body.vomal-redesign .hero-title,
body.vomal-redesign .hero-text,
body.vomal-redesign .hero-panel .glass-shell {
    opacity: 1 !important;
    filter: none !important;
}

body.vomal-redesign .hero-title,
body.vomal-redesign .hero-title .hero-line {
    color: #ffffff !important;
    text-shadow: 0 18px 44px rgba(2, 6, 23, .34) !important;
}

body.vomal-redesign .hero-text {
    color: rgba(241, 245, 249, .94) !important;
    text-shadow: 0 10px 28px rgba(2, 6, 23, .22) !important;
}

@media (max-width: 720px) {
    body.vomal-redesign .hero {
        background:
            radial-gradient(circle at 18% 16%, rgba(249, 115, 22, .26), transparent 30%),
            radial-gradient(circle at 80% 18%, rgba(96, 165, 250, .20), transparent 30%),
            linear-gradient(135deg, #101a35 0%, #14346d 50%, #1f4fa8 100%) !important;
        background-size: auto, auto, auto !important;
        background-position: center, center, center !important;
        background-repeat: no-repeat !important;
        background-blend-mode: normal !important;
    }
}

/* Homepage calculator: make the price tool instantly obvious and inviting. */
body.vomal-redesign .hero-panel .calc-card {
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(249, 115, 22, .18), transparent 34%),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 44%, #fffaf5 100%) !important;
    border: 1px solid rgba(249, 115, 22, .34) !important;
    box-shadow:
        0 34px 90px rgba(249, 115, 22, .22),
        0 20px 74px rgba(2, 6, 23, .30) !important;
}

body.vomal-redesign .hero-panel .calc-card::before {
    content: "KALKULACKA CENY";
    position: absolute;
    top: 18px;
    right: -50px;
    z-index: 0;
    padding: 10px 54px;
    transform: rotate(20deg);
    background: linear-gradient(135deg, rgba(249, 115, 22, .18), rgba(15, 39, 87, .12));
    color: rgba(15, 39, 87, .24);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .18em;
}

body.vomal-redesign .hero-panel .calc-card > * {
    position: relative;
    z-index: 1;
}

body.vomal-redesign .hero-panel .calc-top {
    align-items: center !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(249, 115, 22, .24) !important;
    border-radius: 24px !important;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(255, 255, 255, .94) 52%, rgba(232, 240, 255, .9)) !important;
    box-shadow: 0 18px 42px rgba(15, 39, 87, .10) !important;
}

body.vomal-redesign .hero-panel .calc-badge {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%) !important;
    border: 0 !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(249, 115, 22, .28) !important;
}

body.vomal-redesign .hero-panel .calc-badge .icon-svg {
    color: #fff !important;
}

body.vomal-redesign .hero-panel .calc-price-label {
    color: #c2410c !important;
}

body.vomal-redesign .hero-panel .calc-price-value {
    color: #102757 !important;
}

body.vomal-redesign .hero-panel .calc-intro {
    padding: clamp(24px, 3vw, 34px) !important;
    border: 1px solid rgba(255, 255, 255, .42) !important;
    background:
        radial-gradient(circle at 12% 4%, rgba(255, 255, 255, .34), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(15, 39, 87, .26), transparent 32%),
        linear-gradient(135deg, #ff7a1a 0%, #f97316 44%, #c2410c 100%) !important;
    box-shadow:
        0 28px 62px rgba(249, 115, 22, .36),
        inset 0 1px 0 rgba(255, 255, 255, .24) !important;
}

body.vomal-redesign .hero-panel .calc-intro-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff7ed;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.vomal-redesign .hero-panel .calc-intro-title {
    max-width: 560px;
    margin: 14px 0 10px !important;
    color: #fff !important;
    font-size: clamp(1.65rem, 2.7vw, 2.35rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.04em;
}

body.vomal-redesign .hero-panel .calc-intro p {
    max-width: 620px;
    color: rgba(255, 255, 255, .92) !important;
    font-size: 1.02rem !important;
}

body.vomal-redesign .hero-panel .calc-intro-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

body.vomal-redesign .hero-panel .calc-intro-points span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff !important;
    font-size: .86rem;
    font-weight: 900;
}

body.vomal-redesign .hero-panel .calc-start-btn {
    min-height: 64px !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #0b1734 0%, #102757 100%) !important;
    color: #fff !important;
    box-shadow:
        0 20px 38px rgba(15, 23, 42, .30),
        0 0 0 6px rgba(255, 255, 255, .14) !important;
    animation: vomalCalcPulse 2.8s ease-in-out infinite;
}

body.vomal-redesign .hero-panel .calc-start-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow:
        0 24px 44px rgba(15, 23, 42, .34),
        0 0 0 7px rgba(255, 255, 255, .18) !important;
}

body.vomal-redesign .hero-panel .calc-intro-disclaimer {
    margin: 14px 4px 0 !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: .88rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

body.vomal-redesign .hero-panel .step-bubble.active,
body.vomal-redesign .hero-panel .step-bubble.done {
    background: linear-gradient(135deg, #f97316, #fb923c) !important;
    box-shadow: 0 12px 24px rgba(249, 115, 22, .26) !important;
}

@keyframes vomalCalcPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow:
            0 20px 38px rgba(15, 23, 42, .30),
            0 0 0 6px rgba(255, 255, 255, .14);
    }
    50% {
        transform: translateY(-1px);
        box-shadow:
            0 24px 46px rgba(15, 23, 42, .34),
            0 0 0 8px rgba(255, 255, 255, .18),
            0 0 28px rgba(255, 255, 255, .20);
    }
}

@media (max-width: 575.98px) {
    body.vomal-redesign .hero-panel .calc-card {
        padding: 18px !important;
        border-radius: 28px !important;
    }

    body.vomal-redesign .hero-panel .calc-top {
        align-items: flex-start !important;
    }

    body.vomal-redesign .hero-panel .calc-start-btn {
        min-height: 58px !important;
    }
}

/* Keep the first hero promise in VOMAL brand colors over production overrides. */
body.vomal-redesign .hero-title .hero-line:first-child {
    background: linear-gradient(105deg, #ff8a2a 0%, #f97316 34%, #7c55c7 66%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 10px 24px rgba(2, 6, 23, .24)) !important;
}

/* Softer cookie prompt so it does not compete with the main calculator CTA. */
body.vomal-redesign .cookie-consent {
    max-width: 330px !important;
    padding: 16px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, .14) !important;
}

body.vomal-redesign .cookie-consent-title {
    margin-bottom: 8px !important;
    font-size: .98rem !important;
}

body.vomal-redesign .cookie-consent p {
    font-size: .86rem !important;
    line-height: 1.55 !important;
}

body.vomal-redesign .cookie-consent-actions {
    gap: 8px !important;
    margin-top: 12px !important;
}

body.vomal-redesign .cookie-consent .cookie-btn {
    min-height: 40px !important;
    padding: 0 13px !important;
    border-radius: 14px !important;
    font-size: .86rem !important;
}

body.vomal-redesign .cookie-link {
    margin-top: 10px !important;
    font-size: .82rem !important;
}

@media (max-width: 767.98px) {
    body.vomal-redesign .hero {
        min-height: auto !important;
        padding-top: 10px !important;
    }

    body.vomal-redesign .hero-title {
        font-size: clamp(1.95rem, 8.5vw, 2.55rem) !important;
        line-height: 1.04 !important;
        max-width: 100% !important;
        margin-bottom: 14px !important;
        letter-spacing: -.045em !important;
    }

    body.vomal-redesign .hero-title .hero-line {
        display: block !important;
        transform: none !important;
        opacity: 1 !important;
    }

    body.vomal-redesign .hero-text {
        font-size: .94rem !important;
        line-height: 1.58 !important;
        margin-bottom: 18px !important;
    }

    body.vomal-redesign .hero-actions,
    body.vomal-redesign .hero-proof,
    body.vomal-redesign .hero-metrics,
    body.vomal-redesign .hero-badge {
        display: none !important;
    }

    body.vomal-redesign .hero-panel .calc-intro {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.vomal-redesign .hero-panel .calc-intro-title {
        font-size: 1.45rem !important;
        line-height: 1.08 !important;
    }

    body.vomal-redesign .hero-panel .calc-intro p {
        font-size: .92rem !important;
        line-height: 1.58 !important;
    }

    body.vomal-redesign .hero-panel .calc-intro-points {
        gap: 8px !important;
        margin: 14px 0 18px !important;
    }

    body.vomal-redesign .hero-panel .calc-intro-points span {
        font-size: .78rem !important;
        padding: 7px 10px !important;
    }

    body.vomal-redesign .hero-panel .calc-intro-disclaimer {
        font-size: .78rem !important;
        line-height: 1.48 !important;
    }

    body.vomal-redesign .cookie-consent {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        width: auto !important;
        max-width: none !important;
        padding: 13px !important;
    }

    body.vomal-redesign .cookie-consent p {
        display: none !important;
    }

    body.vomal-redesign .cookie-consent-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    body.vomal-redesign .cookie-consent .cookie-btn-ghost {
        grid-column: 1 / -1 !important;
    }
}

/* Compact mobile navigation and consent prompt. */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 991.98px) {
    .topbar-main {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid rgba(37, 99, 235, .16);
        border-radius: 14px;
        background: linear-gradient(135deg, #fff7ed, #eef5ff);
        box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #102757;
        transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-quicknav {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        z-index: 49;
        padding: 8px 12px 12px;
        border-bottom: 1px solid rgba(226, 232, 240, .95);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 20px 42px rgba(15, 23, 42, .14);
        backdrop-filter: blur(16px);
    }

    .mobile-quicknav.is-open {
        display: block;
    }

    .mobile-quicknav-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        max-width: 540px;
        margin: 0 auto;
        padding: 0;
        overflow: visible;
    }

    .mobile-quicknav a {
        min-width: 0;
        padding: 9px 8px;
        border-radius: 13px;
        font-size: .8rem;
        text-align: center;
        white-space: normal;
    }

    body.vomal-redesign .hero .container,
    body.vomal-redesign .hero .container-xl {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    body.vomal-redesign .hero .row {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    body.vomal-redesign .hero .row > [class*="col-"],
    body.vomal-redesign .hero-copy,
    body.vomal-redesign .hero-panel,
    body.vomal-redesign .hero-panel .glass-shell,
    body.vomal-redesign .hero-panel .calc-card {
        min-width: 0;
        max-width: 100%;
    }

    body.vomal-redesign .hero .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    body.vomal-redesign .hero-copy {
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .topbar .container-xl {
        width: calc(100% - 20px);
    }

    .topbar .brand img {
        width: 142px;
        max-width: 142px;
    }

    body.vomal-redesign .cookie-consent {
        left: 10px !important;
        right: auto !important;
        bottom: 10px !important;
        width: calc(100vw - 20px) !important;
        max-width: 320px !important;
        padding: 11px !important;
        border-radius: 17px !important;
    }

    body.vomal-redesign .cookie-consent-title {
        margin-bottom: 6px !important;
        font-size: .9rem !important;
    }

    body.vomal-redesign .cookie-consent-actions {
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
        margin-top: 7px !important;
    }

    body.vomal-redesign .cookie-consent .cookie-btn {
        min-height: 36px !important;
        padding: 0 8px !important;
        border-radius: 11px !important;
        font-size: .76rem !important;
    }

    body.vomal-redesign .cookie-consent .cookie-btn-ghost {
        display: none !important;
    }

    body.vomal-redesign .cookie-link {
        margin-top: 7px !important;
        font-size: .75rem !important;
    }

    .cookie-box {
        left: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        max-width: 320px;
        padding: 14px;
        border-radius: 18px;
    }

    .cookie-box p {
        display: none;
    }
}
