/* Small project-specific helpers; the page structure and visuals are otherwise Tailwind utilities. */
@font-face {
    font-family: "Font Awesome 7 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../lib/fontawesome/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../lib/fontawesome/webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../lib/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.blog-card {
    position: relative;
    cursor: pointer;
}

.blog-card-main-link::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: 1.5rem;
    content: "";
}

.blog-card-main-link:focus-visible {
    outline: none;
}

.blog-card-main-link:focus-visible::after {
    box-shadow: inset 0 0 0 3px #2A3C90;
}

.blog-card-secondary-link {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

a,
button,
select,
[role="button"],
.prefab-tab,
.hero-pagination .swiper-pagination-bullet {
    cursor: pointer;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled .site-logo-text {
    color: #0f172a;
}

.site-header.is-scrolled .site-nav-link {
    color: #2A3C90;
}

.site-header.is-scrolled .site-nav-link:hover {
    color: #1e2f73;
}

.site-header.is-scrolled .site-menu-button {
    color: #0f172a;
}

body.mobile-drawer-open {
    overflow: hidden;
}

body.mobile-drawer-open #quick-contact-panel,
body.mobile-drawer-open #quick-contact-open,
body.mobile-drawer-open [href*="wa.me"],
body.mobile-drawer-open [href*="whatsapp"] {
    pointer-events: none !important;
    opacity: 0 !important;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.56);
    opacity: 0;
    transition: opacity 220ms ease;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    width: min(21rem, calc(100vw - 2rem));
    height: 100%;
    flex-direction: column;
    gap: 0.35rem;
    background: #fff;
    padding: 5rem 1.25rem 1.25rem;
    color: #0f172a;
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-drawer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f172a;
}

.mobile-drawer-close:hover,
.mobile-drawer-close:focus-visible {
    border-color: rgba(42, 60, 144, 0.22);
    background: #eef2ff;
    color: #2A3C90;
    outline: none;
}

.mobile-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-drawer.is-open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-panel > a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    border-radius: 0.75rem;
    padding: 0.75rem 0.875rem;
    color: #334155;
    font-size: 1rem;
    font-weight: 800;
}

.mobile-drawer-panel > a:hover,
.mobile-drawer-panel > a:focus-visible {
    background: #eef2ff;
    color: #2A3C90;
    outline: none;
}

.manage-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 280px minmax(0, 1fr);
    background:
        radial-gradient(circle at top left, rgba(111, 127, 79, 0.18), transparent 34rem),
        #171512;
}

.manage-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 11, 10, 0.86);
    padding: 1.25rem;
    backdrop-filter: blur(16px);
}

.manage-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.75rem;
    color: #fff;
}

.manage-brand:hover {
    background: rgba(255, 255, 255, 0.06);
}

.manage-brand-mark {
    display: flex;
    height: 2.75rem;
    width: 2.75rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: #2A3C90;
    font-size: 1.25rem;
    font-weight: 900;
}

.site-logo-image,
.footer-logo-image {
    width: auto;
    max-width: 12rem;
    height: 2.5rem;
    object-fit: contain;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 1.5rem;
    row-gap: 0.65rem;
}

.footer-legal-links > * {
    white-space: nowrap;
}

.footer-logo-image {
    filter: brightness(0) invert(1);
}

@media (max-width: 640px) {
    #hero-slider {
        height: calc(100vh - 24px);
        height: calc(100svh - 24px);
        min-height: calc(100vh - 24px);
        min-height: calc(100svh - 24px);
    }

    #hero-slider .swiper-wrapper {
        height: 100%;
        align-items: stretch;
    }

    #hero-slider .swiper-slide {
        height: 100%;
        min-height: 100%;
    }

    .hero-slide-content {
        align-items: flex-start !important;
        height: 100% !important;
        min-height: 100%;
        padding-bottom: 8.5rem !important;
    }

    .hero-controls {
        right: 1.25rem !important;
        bottom: 2.25rem !important;
        gap: 0.75rem !important;
    }

    #hero-slider .hero-pagination.swiper-pagination-horizontal {
        left: 1.5rem;
        bottom: 3rem;
    }

    .hero-badge {
        max-width: calc(100vw - 7.5rem);
        align-items: flex-start;
        white-space: normal;
    }

    .hero-badge span:last-child {
        min-width: 0;
        line-height: 1.35;
    }

    .hero-title {
        max-width: 100%;
        line-height: 1.08 !important;
        overflow-wrap: anywhere;
    }

    .hero-copy {
        max-width: 100%;
        font-size: clamp(1rem, 5vw, 1.35rem) !important;
        line-height: 1.55 !important;
    }

    .hero-actions {
        margin-bottom: 1rem;
    }
}

.calc-choice {
    position: relative;
}

.calc-choice-trigger {
    display: flex;
    min-height: 3.5rem;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    padding: 0.875rem 1rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.calc-choice-trigger:hover,
.calc-choice-trigger:focus-visible,
.calc-choice.is-open .calc-choice-trigger {
    border-color: #2A3C90;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 60, 144, 0.14);
}

.calc-choice-trigger i {
    color: #2A3C90;
    transition: transform 160ms ease;
}

.calc-choice.is-open .calc-choice-trigger i {
    transform: rotate(180deg);
}

.calc-option-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: grid;
    max-height: 16rem;
    gap: 0.5rem;
    overflow-y: auto;
    border: 1px solid rgba(42, 60, 144, 0.18);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.calc-option-menu[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .calc-choice.is-open {
        border-color: #2A3C90;
        border-radius: 0.875rem;
        box-shadow: 0 0 0 3px rgba(42, 60, 144, 0.1);
    }

    .calc-choice.is-open .calc-choice-trigger {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        box-shadow: none;
    }

    .calc-option-menu {
        position: static;
        max-height: none;
        gap: 0;
        overflow: visible;
        border-top: 0;
        border-color: #2A3C90;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        background: #fff;
        padding: 0.5rem;
        box-shadow: none;
    }
}

.calc-option {
    display: flex;
    min-height: 3rem;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    background: transparent;
    padding: 0.75rem 0.875rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.calc-option i {
    opacity: 0;
    color: #fff;
    font-size: 0.875rem;
    transition: opacity 160ms ease;
}

.calc-option:focus-visible {
    border-color: rgba(42, 60, 144, 0.16);
    background: #eef2ff;
    outline: none;
}

@media (hover: hover) {
    .calc-option:hover {
        border-color: rgba(42, 60, 144, 0.16);
        background: #eef2ff;
        outline: none;
    }
}

.calc-option.is-selected {
    border-color: #2A3C90;
    background: #2A3C90;
    color: #fff;
}

.calc-option.is-selected i {
    opacity: 1;
}

.manage-logo-image {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    object-fit: contain;
}

.manage-logo-image-wide {
    width: auto;
    max-width: 12rem;
}

.logo-settings-preview {
    width: auto;
    max-width: 12.5rem;
    max-height: 3.5rem;
    object-fit: contain;
}

.manage-brand strong,
.manage-brand small {
    display: block;
}

.manage-brand small {
    margin-top: 0.125rem;
    color: #a8a29e;
    font-size: 0.75rem;
}

.manage-nav {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.35rem;
}

.manage-nav-link {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.8rem 0.9rem;
    color: #d6d3d1;
    font-size: 0.925rem;
    font-weight: 700;
    text-align: left;
}

.manage-nav-link i {
    width: 1.1rem;
    color: #cfdcbd;
    text-align: center;
}

.manage-nav-link:hover,
.manage-nav-link.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.manage-nav-link.is-active {
    box-shadow: inset 3px 0 0 #cfdcbd;
}

.manage-sidebar-footer {
    margin-top: auto;
    display: grid;
    gap: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.manage-logout {
    border: 0;
    background: transparent;
}

.manage-content {
    min-width: 0;
}

.manage-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(23, 21, 18, 0.82);
    padding: 1rem 2rem;
    backdrop-filter: blur(16px);
}

.manage-topbar h1 {
    margin-top: 0.2rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}

.manage-user {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.55rem 0.8rem;
    color: #d6d3d1;
    font-size: 0.875rem;
}

.manage-main {
    min-width: 0;
    padding-bottom: 3rem;
}

.content-list-toolbar {
    display: grid;
    grid-template-columns: minmax(14rem, 1fr) minmax(9rem, 0.45fr) minmax(14rem, 0.7fr) auto;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
}

.content-list-toolbar label {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.content-list-toolbar label > span {
    color: #d6d3d1;
    font-size: 0.8rem;
    font-weight: 800;
}

.content-list-toolbar input,
.content-list-toolbar select {
    min-height: 2.75rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.625rem;
    background: rgba(12, 11, 10, 0.72);
    padding: 0.65rem 0.75rem;
    color: #fff;
    outline: none;
}

.content-list-toolbar input::placeholder {
    color: #78716c;
}

.content-list-toolbar input:focus,
.content-list-toolbar select:focus {
    border-color: #cfdcbd;
    box-shadow: 0 0 0 3px rgba(207, 220, 189, 0.12);
}

.content-list-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-list-toolbar-actions button,
.content-list-toolbar-actions a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    padding: 0.65rem 0.9rem;
    font-weight: 800;
}

.content-list-toolbar-actions button {
    border: 1px solid #cfdcbd;
    background: #cfdcbd;
    color: #171512;
}

.content-list-toolbar-actions a {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.content-list-toolbar-actions button:hover,
.content-list-toolbar-actions a:hover {
    filter: brightness(1.08);
}

.meta-settings-table {
    min-width: 1200px;
}

.meta-index-checkbox {
    accent-color: #2A3C90;
}

.auth-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(42, 60, 144, 0.22), transparent 32rem),
        #171512;
}

.auth-brand {
    position: fixed;
    left: 1.5rem;
    top: 1.5rem;
}

@media (max-width: 960px) {
    .manage-shell {
        grid-template-columns: 1fr;
    }

    .manage-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .manage-nav,
    .manage-sidebar-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .manage-topbar {
        position: static;
        padding: 1rem;
    }

    .content-list-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .manage-nav,
    .manage-sidebar-footer {
        grid-template-columns: 1fr;
    }

    .manage-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-brand {
        position: static;
        margin-bottom: 1rem;
        justify-self: start;
    }

    .content-list-toolbar {
        grid-template-columns: 1fr;
    }

    .content-list-toolbar-actions > * {
        flex: 1;
    }
}

html {
    scroll-behavior: smooth;
}

#hero-slider .hero-pagination.swiper-pagination-horizontal {
    right: auto;
    bottom: 4rem;
    left: 2.5rem;
    top: auto;
    width: auto;
}

@media (min-width: 768px) {
    #hero-slider .hero-pagination.swiper-pagination-horizontal {
        left: 4rem;
    }
}

.hero-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    background: transparent;
    opacity: 1;
    transition: width 0.2s ease;
}

.hero-pagination .swiper-pagination-bullet::before {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    content: "";
    transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-pagination .swiper-pagination-bullet:hover::before {
    background: rgba(255, 255, 255, 0.5);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 2.5rem;
    background: transparent;
}

.hero-pagination .swiper-pagination-bullet-active::before {
    width: 2rem;
    background: #2A3C90;
}

.hero-pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

#projects-carousel .projects-pagination.swiper-pagination-horizontal {
    position: static;
    width: auto;
}

.projects-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 0.15rem !important;
    background: transparent;
    opacity: 1;
    transition: width 0.2s ease;
}

.projects-pagination .swiper-pagination-bullet::before {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #b8b8b8;
    content: "";
    transition: width 0.2s ease, background-color 0.2s ease;
}

.projects-pagination .swiper-pagination-bullet-active {
    width: 2.5rem;
    background: transparent;
}

.projects-pagination .swiper-pagination-bullet-active::before {
    width: 2rem;
    background: #000;
}

.team-slide {
    height: auto;
}

.team-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 0.15rem !important;
    background: transparent;
    opacity: 1;
    transition: width 0.2s ease;
}

.team-pagination .swiper-pagination-bullet::before {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #b8b8b8;
    content: "";
    transition: width 0.2s ease, background-color 0.2s ease;
}

.team-pagination .swiper-pagination-bullet-active {
    width: 2.5rem;
    background: transparent;
}

.team-pagination .swiper-pagination-bullet-active::before {
    width: 2rem;
    background: #2A3C90;
}

.hero-nav-button {
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-nav-button:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.hero-nav-button:active {
    transform: scale(0.94);
}

.gn-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.gn-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gn-hover-card {
    cursor: pointer;
}

.soft-shadow-card {
    cursor: pointer;
    transition: box-shadow 0.25s ease;
}

.soft-shadow-card:hover {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

.prefab-tab {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.prefab-tab[data-active="false"]:hover {
    background: #e2e8f0;
    color: #334155;
}

.prefab-tab[data-active="true"]:hover {
    background: #1e2f73;
}

.gn-magnetic {
    transform: translate(var(--mx, 0), var(--my, 0));
    transition: transform 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gn-reveal {
        opacity: 1;
        transform: none;
    }
}

/* The required reCAPTCHA disclosure is shown inside each protected form. */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Multi-step project request form. The price calculator remains available in code but is not rendered publicly. */
.project-request-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(42, 60, 144, 0.1), transparent 26rem),
        radial-gradient(circle at 92% 90%, rgba(42, 60, 144, 0.08), transparent 28rem),
        #f8fafc;
}

.project-request-heading {
    max-width: 48rem;
    margin: 0 auto 3rem;
    color: #0f172a;
    text-align: center;
}

.project-request-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(42, 60, 144, 0.1);
    padding: 0.625rem 1rem;
    color: #2a3c90;
    font-size: 0.875rem;
    font-weight: 800;
}

.project-request-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.project-request-heading h2 span {
    color: #2a3c90;
}

.project-request-heading p {
    max-width: 42rem;
    margin: 1.25rem auto 0;
    color: #64748b;
    font-size: 1.075rem;
    line-height: 1.75;
}

.project-request-shell {
    display: grid;
    max-width: 72rem;
    min-height: 39rem;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 2fr);
}

.project-request-progress {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    background:
        radial-gradient(circle at 100% 0, rgba(91, 108, 194, 0.42), transparent 18rem),
        linear-gradient(155deg, #0f172a 0%, #172554 55%, #2a3c90 100%);
    color: #fff;
}

.project-request-progress::after {
    position: absolute;
    right: -5rem;
    bottom: -5rem;
    width: 13rem;
    height: 13rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    content: "";
}

.project-request-progress-copy {
    position: relative;
    z-index: 1;
}

.project-request-progress-copy > span {
    color: #bfdbfe;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-request-progress-copy h3 {
    margin: 0.85rem 0 0;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
}

.project-request-progress-copy p {
    margin: 1rem 0 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
}

.project-request-progress ol {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.35rem;
    margin: 2.75rem 0 0;
    padding: 0;
    list-style: none;
}

.project-request-progress li {
    position: relative;
    display: grid;
    align-items: center;
    gap: 0.85rem;
    color: #94a3b8;
    grid-template-columns: 2.5rem 1fr;
    transition: color 180ms ease, opacity 180ms ease;
}

.project-request-progress li:not(:last-child)::after {
    position: absolute;
    top: 2.65rem;
    bottom: -1.2rem;
    left: 1.22rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
    content: "";
}

.project-request-progress li > span {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.875rem;
    font-weight: 900;
}

.project-request-progress li strong,
.project-request-progress li small {
    display: block;
}

.project-request-progress li strong {
    color: inherit;
    font-size: 0.95rem;
}

.project-request-progress li small {
    margin-top: 0.15rem;
    color: #94a3b8;
    font-size: 0.75rem;
}

.project-request-progress li.is-active,
.project-request-progress li.is-complete {
    color: #fff;
}

.project-request-progress li.is-active > span,
.project-request-progress li.is-complete > span {
    border-color: #93c5fd;
    background: #fff;
    color: #2a3c90;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.09);
}

.project-request-form {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    color: #0f172a;
}

.project-request-step {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.project-request-step[hidden] {
    display: none;
}

.project-request-step-kicker {
    margin-bottom: 0.55rem;
    color: #2a3c90;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-request-step legend {
    max-width: 42rem;
    padding: 0;
    color: #0f172a;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.project-request-step-help {
    margin: 0.8rem 0 1.75rem;
    color: #64748b;
    line-height: 1.6;
}

.project-request-options {
    display: grid;
    gap: 0.85rem;
}

.project-request-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-request-cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-request-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.project-request-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.project-request-option-content {
    display: grid;
    min-height: 7.2rem;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    padding: 1.15rem;
    grid-template-columns: 2.75rem minmax(0, 1fr) 1.5rem;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.project-request-option.is-compact .project-request-option-content {
    min-height: 5.75rem;
}

.project-request-option-icon {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: #eef2ff;
    color: #2a3c90;
    font-size: 1.1rem;
}

.project-request-option-content strong,
.project-request-option-content small {
    display: block;
}

.project-request-option-content strong {
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.35;
}

.project-request-option-content small {
    margin-top: 0.3rem;
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.45;
}

.project-request-check {
    display: inline-flex;
    width: 1.4rem;
    height: 1.4rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: transparent;
    font-size: 0.65rem;
}

.project-request-option:hover .project-request-option-content {
    border-color: rgba(42, 60, 144, 0.4);
    transform: translateY(-2px);
}

.project-request-option input:focus-visible + .project-request-option-content {
    outline: 3px solid rgba(42, 60, 144, 0.18);
    outline-offset: 2px;
}

.project-request-option:has(input:checked) .project-request-option-content {
    border-color: #2a3c90;
    background: #f5f7ff;
    box-shadow: 0 12px 28px rgba(42, 60, 144, 0.12);
}

.project-request-option:has(input:checked) .project-request-option-icon {
    background: #2a3c90;
    color: #fff;
}

.project-request-option:has(input:checked) .project-request-check {
    border-color: #2a3c90;
    background: #2a3c90;
    color: #fff;
}

.project-request-input-wrap {
    display: block;
    max-width: 31rem;
    margin-top: 2rem;
}

.project-request-input-wrap > span:first-child {
    display: block;
    margin-bottom: 0.65rem;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 800;
}

.project-request-input-group {
    display: flex;
    min-height: 4.25rem;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    background: #f8fafc;
    padding: 0 1.15rem;
    color: #2a3c90;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.project-request-input-group:focus-within {
    border-color: #2a3c90;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(42, 60, 144, 0.12);
}

.project-request-input-group input {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    outline: none;
}

.project-request-input-group input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.project-request-input-group > strong {
    color: #475569;
    font-size: 1rem;
}

.project-request-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.25rem;
}

.project-request-actions.is-end {
    justify-content: flex-end;
}

.project-request-next,
.project-request-submit,
.project-request-back {
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 0.85rem;
    padding: 0.85rem 1.35rem;
    font-weight: 800;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.project-request-next,
.project-request-submit {
    border: 1px solid #2a3c90;
    background: #2a3c90;
    color: #fff;
    box-shadow: 0 12px 24px rgba(42, 60, 144, 0.2);
}

.project-request-next:hover,
.project-request-submit:hover {
    background: #1e2f73;
    transform: translateY(-1px);
}

.project-request-back {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
}

.project-request-back:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
}

.project-request-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.project-request-feedback {
    margin-bottom: 1.35rem;
    border: 1px solid #bbf7d0;
    border-radius: 0.85rem;
    background: #f0fdf4;
    padding: 0.9rem 1rem;
    color: #166534;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
}

.project-request-feedback.is-error,
.project-request-feedback.border-red-400\/30 {
    border-color: #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.project-request-step-error {
    margin: 0.85rem 0 0;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 700;
}

.project-request-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.5;
}

.project-request-privacy i {
    color: #2a3c90;
}

.cookie-consent-banner[hidden],
.cookie-preferences[hidden] {
    display: none !important;
}

.cookie-consent-banner {
    position: fixed;
    z-index: 90;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.97);
    padding: 1.35rem;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(18px);
}

.cookie-consent-copy {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-consent-icon {
    display: flex;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(99, 102, 241, 0.2);
    color: #c7d2fe;
    font-size: 1.2rem;
}

.cookie-consent-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.cookie-consent-copy p {
    max-width: 760px;
    margin: 0.35rem 0 0;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.6;
}

.cookie-consent-copy a,
.cookie-policy-link {
    color: #c7d2fe;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent-actions,
.cookie-preferences-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.cookie-consent-actions button,
.cookie-preferences-actions button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.7rem 0.9rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.cookie-consent-actions button:hover,
.cookie-preferences-actions button:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.cookie-preferences {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cookie-preferences-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
}

.cookie-preferences-panel {
    position: relative;
    width: min(100%, 720px);
    max-height: min(88vh, 800px);
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    background: #fff;
    padding: 1.75rem;
    color: #0f172a;
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.35);
}

.cookie-preferences-panel header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-preferences-panel header span {
    color: #2a3c90;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-preferences-panel h2 {
    margin: 0.35rem 0 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
}

.cookie-preferences-close {
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
    background: #f8fafc;
    color: #334155;
}

.cookie-preferences-intro {
    margin: 1.15rem 0 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
}

.cookie-preference-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.35rem;
}

.cookie-preference-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #f8fafc;
    padding: 1rem;
}

.cookie-preference-card strong {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 900;
}

.cookie-preference-card p {
    margin: 0.3rem 0 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.55;
}

.cookie-always-active {
    flex: 0 0 auto;
    border-radius: 999px;
    background: #dcfce7;
    padding: 0.45rem 0.7rem;
    color: #166534;
    font-size: 0.7rem;
    font-weight: 900;
}

.cookie-switch {
    position: relative;
    width: 3.25rem;
    height: 1.8rem;
    flex: 0 0 auto;
}

.cookie-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background-color 160ms ease;
}

.cookie-switch span::after {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.22);
    content: "";
    transition: transform 160ms ease;
}

.cookie-switch input:checked + span {
    background: #2a3c90;
}

.cookie-switch input:checked + span::after {
    transform: translateX(1.45rem);
}

.cookie-switch input:focus-visible + span {
    outline: 3px solid rgba(42, 60, 144, 0.28);
    outline-offset: 2px;
}

.cookie-preferences-actions {
    margin-top: 1.35rem;
}

.cookie-preferences-actions button {
    border-color: #cbd5e1;
    background: #fff;
    color: #1e293b;
    white-space: normal;
}

.cookie-preferences-actions button:hover {
    border-color: #64748b;
    background: #f8fafc;
}

.cookie-policy-link {
    display: block;
    margin-top: 1rem;
    text-align: center;
    color: #2a3c90;
    font-size: 0.78rem;
}

body.cookie-preferences-open {
    overflow: hidden;
}

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

.recaptcha-notice {
    margin-top: 0.75rem;
    color: #64748b;
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: center;
}

.recaptcha-notice a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.recaptcha-notice a:hover {
    color: #2a3c90;
}

.gn-calculator .recaptcha-notice {
    color: #94a3b8;
}

@media (max-width: 900px) {
    .cookie-consent-banner {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .project-request-shell {
        grid-template-columns: 1fr;
    }

    .project-request-progress {
        padding: 1.5rem;
    }

    .project-request-progress-copy {
        display: none;
    }

    .project-request-progress ol {
        display: grid;
        margin: 0;
        gap: 0.5rem;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .project-request-progress li {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .project-request-progress li:not(:last-child)::after,
    .project-request-progress li small {
        display: none;
    }

    .project-request-progress li strong {
        font-size: 0.72rem;
    }
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        gap: 1rem;
        border-radius: 1.2rem;
        padding: 1rem;
    }

    .cookie-consent-icon {
        display: none;
    }

    .cookie-consent-actions,
    .cookie-preferences-actions {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions button {
        min-height: 2.75rem;
    }

    .cookie-preferences {
        align-items: flex-end;
        padding: 0;
    }

    .cookie-preferences-panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 1.5rem 1.5rem 0 0;
        padding: 1.25rem;
    }

    .cookie-preference-card {
        align-items: flex-start;
    }

    .cookie-always-active {
        max-width: 7rem;
        text-align: center;
    }

    .project-request-section {
        padding: 4.5rem 0;
    }

    .project-request-heading {
        margin-bottom: 2rem;
    }

    .project-request-heading p {
        font-size: 0.95rem;
    }

    .project-request-shell {
        border-radius: 1.4rem;
    }

    .project-request-progress {
        padding: 1.1rem 0.85rem;
    }

    .project-request-progress li > span {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .project-request-form {
        padding: 1.5rem 1.1rem 1.75rem;
    }

    .project-request-services,
    .project-request-cities {
        grid-template-columns: 1fr;
    }

    .project-request-option-content {
        min-height: 5.8rem;
    }

    .project-request-actions {
        align-items: stretch;
    }

    .project-request-next,
    .project-request-submit,
    .project-request-back {
        flex: 1;
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }
}
