:root {
    --ink: #071b33;
    --ink-2: #0c294b;
    --blue: #0b5ed7;
    --blue-dark: #064398;
    --blue-soft: #eaf2ff;
    --cyan: #35c4e8;
    --gold: #f2b544;
    --white: #ffffff;
    --paper: #f5f8fc;
    --line: #dce5ef;
    --muted: #617187;
    --success: #198754;
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 36px;
    --shadow-sm: 0 12px 32px rgba(7, 27, 51, .08);
    --shadow: 0 22px 60px rgba(7, 27, 51, .12);
    --transition: 220ms ease;
    --admin-offset: 0px;
    --topbar-height: 36px;
    --navbar-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 125px;
}

body {
    min-width: 320px;
    margin: 0;
    padding-top: calc(var(--admin-offset) + var(--topbar-height) + var(--navbar-height));
    overflow-x: hidden;
    color: var(--muted);
    background: var(--white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.has-admin-bar {
    --admin-offset: 32px;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

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

img {
    max-width: 100%;
}

p {
    line-height: 1.72;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.admin-bar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1055;
    height: 32px;
    color: #fef3c7;
    background: #111827;
    font-size: .75rem;
    font-weight: 700;
}

.admin-bar-link {
    padding: 3px 10px;
    border-radius: 999px;
    color: #111827;
    background: var(--gold);
}

.top-bar {
    position: fixed;
    top: var(--admin-offset);
    right: 0;
    left: 0;
    z-index: 1045;
    height: var(--topbar-height);
    color: rgba(255, 255, 255, .78);
    background: var(--ink);
    font-size: .75rem;
}

.top-bar-promise {
    letter-spacing: .01em;
}

.top-bar-contacts {
    height: 100%;
    gap: 0;
}

.top-bar-contacts > * {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.top-bar-contacts a {
    transition: color var(--transition);
}

.top-bar-contacts a:hover {
    color: var(--white);
}

.site-navbar {
    top: calc(var(--admin-offset) + var(--topbar-height));
    z-index: 1040;
    min-height: var(--navbar-height);
    padding: 10px 0;
    border-bottom: 1px solid rgba(7, 27, 51, .06);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 5px 24px rgba(7, 27, 51, .05);
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-navbar.is-scrolled {
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 12px 32px rgba(7, 27, 51, .12);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.brand-lockup img {
    width: auto;
    max-width: 150px;
    height: 48px;
    object-fit: contain;
}

.brand-mark {
    display: inline-grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px 4px 14px 4px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--ink-2));
    box-shadow: 0 8px 18px rgba(11, 94, 215, .22);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 850;
    letter-spacing: -.02em;
    text-overflow: ellipsis;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .64rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-navbar .navbar-toggler {
    padding: 8px;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
}

.site-navbar .nav-link {
    position: relative;
    padding: 10px 11px !important;
    color: #253c57;
    font-size: .86rem;
    font-weight: 700;
    transition: color var(--transition);
}

.site-navbar .nav-link::after {
    position: absolute;
    right: 11px;
    bottom: 4px;
    left: 11px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: var(--blue);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after {
    transform: scaleX(1);
}

.navbar-actions .btn {
    white-space: nowrap;
}

.btn {
    border-radius: 12px;
    font-weight: 750;
    transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
}

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

.btn-brand {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(11, 94, 215, .24);
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--blue-dark);
    color: var(--white);
    background: var(--blue-dark);
    box-shadow: 0 14px 30px rgba(11, 94, 215, .3);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--white);
}

.btn-ghost:hover,
.btn-ghost:focus {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
}

.nav-logout {
    padding: 7px 5px;
    color: var(--muted);
}

.hero-section,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    min-height: min(760px, calc(100svh - var(--admin-offset) - var(--topbar-height) - var(--navbar-height)));
}

.hero-section .carousel-item {
    position: relative;
    background-position: center;
    background-size: cover;
}

.hero-fallback {
    background:
        radial-gradient(circle at 82% 18%, rgba(53, 196, 232, .2), transparent 25%),
        linear-gradient(135deg, #071b33, #0c3d6e);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 20, 39, .97) 0%, rgba(5, 30, 57, .88) 48%, rgba(5, 34, 63, .4) 100%),
        linear-gradient(0deg, rgba(5, 27, 51, .42), transparent 45%);
}

.hero-overlay::after {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
    background-size: 80px 80px;
    content: "";
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 90px;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-eyebrow {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #dcecff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.hero-title {
    max-width: 850px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.55rem, 5.7vw, 5.2rem);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .98;
    text-wrap: balance;
}

.hero-lead {
    max-width: 720px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

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

.hero-actions .btn,
.contact-actions .btn {
    padding: 13px 20px;
    border-radius: 14px;
    font-size: .95rem;
}

.hero-proof {
    max-width: 330px;
    margin-left: auto;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(4, 24, 46, .52);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.hero-proof-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 42px;
    place-items: center;
    border-radius: 14px;
    color: var(--ink);
    background: var(--gold);
    font-size: 1.4rem;
}

.hero-proof-label {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, .55);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-proof strong,
.hero-proof > span:last-child {
    display: block;
}

.hero-proof strong {
    font-size: 1.15rem;
    line-height: 1.3;
}

.hero-proof > span:last-child {
    margin-top: 9px;
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
}

.hero-section .carousel-indicators {
    z-index: 4;
    justify-content: flex-start;
    max-width: 1320px;
    margin-right: auto;
    margin-bottom: 28px;
    margin-left: auto;
    padding: 0 12px;
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 3px;
    margin: 0 4px;
    border: 0;
    border-radius: 99px;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 3;
    width: 5%;
    opacity: .7;
}

.message-stack {
    position: relative;
    z-index: 10;
    margin-top: -24px;
}

.message-stack .alert {
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.trust-item {
    display: flex;
    min-height: 128px;
    flex-direction: column;
    justify-content: center;
    padding: 25px 32px;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 1px solid var(--line);
}

.trust-item strong {
    color: var(--ink);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1;
}

.trust-item span {
    margin-top: 8px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.section {
    position: relative;
    padding: clamp(78px, 9vw, 124px) 0;
}

.section-soft {
    background: var(--paper);
}

.section-heading {
    display: flex;
    max-width: 1100px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.section-heading > div {
    flex: 1 1 650px;
}

.section-heading > p {
    flex: 0 1 390px;
    margin: 0 0 3px;
}

.section-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4.2vw, 3.65rem);
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: 1.03;
    text-wrap: balance;
}

.section-lead {
    margin: 24px 0 16px;
    color: #334a65;
    font-size: 1.08rem;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto 52px;
}

.section-intro p {
    max-width: 650px;
    margin: 20px auto 0;
}

.about-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 110px var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 27, 51, .72));
    content: "";
}

.about-visual img,
.about-placeholder {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-placeholder {
    display: flex;
    padding: 54px;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        radial-gradient(circle at 75% 20%, rgba(53, 196, 232, .24), transparent 30%),
        linear-gradient(135deg, #0c294b, #0b5ed7);
    background-size: 70px 70px, 70px 70px, auto, auto;
}

.about-placeholder > span {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.about-placeholder strong {
    max-width: 420px;
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .98;
}

.about-seal {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 19px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    color: var(--white);
    background: rgba(7, 27, 51, .84);
    backdrop-filter: blur(12px);
}

.about-seal i {
    color: var(--gold);
    font-size: 1.6rem;
}

.about-seal span {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.25;
    text-transform: uppercase;
}

.value-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.value-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.value-item > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 1.2rem;
    font-weight: 900;
}

.value-item strong,
.value-item span {
    display: block;
}

.value-item strong {
    margin-bottom: 3px;
    color: var(--ink);
    font-size: .98rem;
}

.value-item span {
    font-size: .88rem;
    line-height: 1.55;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 330px;
    height: 100%;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(7, 27, 51, .04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0;
    background: var(--blue-soft);
    content: "";
    transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover {
    border-color: rgba(11, 94, 215, .2);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.service-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 44px;
}

.service-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 1.65rem;
}

.service-icon svg {
    width: 29px;
    height: 29px;
}

.service-number {
    color: #9aacbf;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.26rem;
    font-weight: 800;
    line-height: 1.25;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    font-size: .91rem;
}

.service-link,
.text-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 0;
    border: 0;
    color: var(--blue);
    background: transparent;
    font-size: .83rem;
    font-weight: 800;
    transition: gap var(--transition), color var(--transition);
}

.service-link:hover,
.text-link:hover {
    gap: 12px;
    color: var(--blue-dark);
}

.section-projects {
    color: rgba(255, 255, 255, .7);
    background:
        radial-gradient(circle at 90% 5%, rgba(53, 196, 232, .12), transparent 28%),
        var(--ink);
}

.section-heading-light .section-title,
.section-projects .section-kicker {
    color: var(--white);
}

.section-projects .section-kicker {
    opacity: .65;
}

.project-card {
    position: relative;
    min-height: 470px;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink-2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.project-card img,
.project-placeholder {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    transition: transform 600ms ease;
}

.project-card:hover img {
    transform: scale(1.045);
}

.project-placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .2);
    background: linear-gradient(135deg, var(--ink-2), #17446f);
    font-size: 5rem;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(4, 20, 39, .94) 100%);
}

.project-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 32px;
}

.project-content > span {
    display: block;
    margin-bottom: 8px;
    color: #8fdcf0;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-content h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    font-weight: 820;
    letter-spacing: -.03em;
}

.project-content p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: .88rem;
}

.empty-showcase {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 42px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
}

.empty-showcase > i {
    color: var(--cyan);
    font-size: 2.5rem;
}

.empty-showcase h3 {
    margin: 0 0 4px;
    color: var(--white);
    font-size: 1.25rem;
}

.empty-showcase p {
    margin: 0;
}

.empty-showcase-light {
    border-color: var(--line);
    color: var(--muted);
    background: var(--white);
}

.empty-showcase-light h3 {
    color: var(--ink);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-step {
    position: relative;
    min-height: 300px;
    padding: 32px 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.process-step:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.process-step:last-child {
    border-right: 1px solid var(--line);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.process-step > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #b4c1cf;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.process-step > i {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 58px;
    place-items: center;
    border-radius: 18px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 1.5rem;
}

.process-step h3 {
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 800;
}

.process-step p {
    margin: 0;
    font-size: .87rem;
}

.portfolio-grid {
    display: grid;
    grid-auto-rows: 280px;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.portfolio-card {
    position: relative;
    grid-column: span 4;
    min-height: 280px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
}

.portfolio-card:nth-child(5n + 1),
.portfolio-card:nth-child(5n + 4) {
    grid-column: span 7;
}

.portfolio-card:nth-child(5n + 2),
.portfolio-card:nth-child(5n + 5) {
    grid-column: span 5;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms ease;
}

.portfolio-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(4, 20, 39, .9));
    content: "";
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 26px;
    color: var(--white);
}

.portfolio-card figcaption span {
    color: #99e5f8;
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.portfolio-card h3 {
    margin: 5px 0 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.portfolio-card p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
}

.signup-section {
    padding-top: 0;
    background: var(--paper);
}

.signup-panel {
    position: relative;
    padding: clamp(34px, 6vw, 66px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, .72);
    background:
        radial-gradient(circle at 10% 10%, rgba(53, 196, 232, .2), transparent 30%),
        linear-gradient(135deg, var(--ink), #0c3d6e);
    box-shadow: var(--shadow);
}

.signup-panel::after {
    position: absolute;
    top: -140px;
    right: -140px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.signup-panel .section-kicker {
    color: #9ee8f9;
}

.signup-panel h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(1.9rem, 3.3vw, 3rem);
    font-weight: 830;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.signup-options {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.signup-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.signup-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 34px;
    place-items: center;
    border-radius: 15px;
    color: var(--ink);
    background: var(--gold);
    font-size: 1.25rem;
}

.signup-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
}

.signup-card p {
    font-size: .84rem;
}

.signup-card .btn {
    margin-top: auto;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: .8rem;
}

.testimonial-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 28px rgba(7, 27, 51, .06);
}

.testimonial-quote {
    position: absolute;
    top: 18px;
    right: 24px;
    color: var(--blue-soft);
    font-size: 4rem;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 24px;
    color: var(--gold);
}

.testimonial-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0 0 34px;
    color: #354b64;
    font-size: 1rem;
    line-height: 1.72;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testimonial-author img,
.testimonial-author > span {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author > span {
    color: var(--white);
    background: var(--blue);
    font-weight: 850;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    color: var(--ink);
    font-size: .9rem;
}

.testimonial-author small {
    margin-top: 2px;
    color: var(--muted);
    font-size: .74rem;
}

.faq-intro {
    position: sticky;
    top: 150px;
}

.faq-intro p {
    margin: 22px 0;
}

.faq-accordion {
    display: grid;
    gap: 12px;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.faq-accordion .accordion-button {
    padding: 20px 22px;
    color: var(--ink);
    background: var(--white);
    box-shadow: none;
    font-size: .94rem;
    font-weight: 800;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue);
    background: var(--blue-soft);
}

.faq-accordion .accordion-body {
    padding: 8px 22px 22px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

.knowledge-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(7, 27, 51, .05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.knowledge-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.knowledge-card > img,
.knowledge-placeholder {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.knowledge-placeholder {
    display: grid;
    place-items: center;
    color: var(--blue);
    background: linear-gradient(135deg, var(--blue-soft), #f8fbff);
    font-size: 3rem;
}

.knowledge-body {
    padding: 26px;
}

.knowledge-body > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.knowledge-body h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.3;
}

.knowledge-body p {
    font-size: .86rem;
}

.contact-section {
    padding: 0 0 100px;
    background: var(--white);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 70px;
    padding: clamp(38px, 6vw, 70px);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, .72);
    background:
        radial-gradient(circle at 0 100%, rgba(53, 196, 232, .18), transparent 30%),
        var(--ink);
    box-shadow: var(--shadow);
}

.contact-copy .section-kicker {
    color: #9ee8f9;
}

.contact-copy h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 850;
    letter-spacing: -.05em;
}

.contact-copy p {
    max-width: 650px;
    margin: 20px 0 28px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-details {
    display: flex;
    margin: 0;
    flex-direction: column;
    justify-content: center;
}

.contact-details > * {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
    font-style: normal;
}

.contact-details > *:last-child {
    border-bottom: 0;
}

.contact-details > * > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #a4eaf9;
    background: rgba(255, 255, 255, .08);
}

.contact-details small,
.contact-details span {
    display: block;
}

.contact-details small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .48);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-details span {
    overflow-wrap: anywhere;
    font-size: .86rem;
    font-weight: 700;
}

.site-footer {
    padding: 75px 0 25px;
    color: rgba(255, 255, 255, .55);
    background: #031225;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 55px;
}

.brand-lockup-light .brand-copy strong {
    color: var(--white);
}

.brand-lockup-light .brand-copy small {
    color: rgba(255, 255, 255, .5);
}

.footer-brand > p {
    max-width: 320px;
    margin: 20px 0 0;
    font-size: .84rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
}

.footer-links strong {
    margin-bottom: 7px;
    color: var(--white);
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-links a {
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: .72rem;
}

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1020;
    display: inline-flex;
    height: 52px;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--white);
    background: #20bd5a;
    box-shadow: 0 14px 36px rgba(23, 151, 71, .32);
    font-size: .82rem;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-button i {
    font-size: 1.3rem;
}

.whatsapp-button:hover {
    color: var(--white);
    box-shadow: 0 18px 40px rgba(23, 151, 71, .4);
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    right: 29px;
    bottom: 86px;
    z-index: 1019;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    opacity: 0;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.service-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 32px 100px rgba(4, 20, 39, .3);
}

.service-modal .modal-header {
    align-items: flex-start;
    padding: 28px 30px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.service-modal .modal-header .section-kicker {
    margin-bottom: 7px;
}

.service-modal .modal-header h2 {
    margin: 0 0 5px;
    color: var(--ink);
    font-size: 1.65rem;
    font-weight: 820;
}

.service-modal .modal-header p {
    margin: 0;
    font-size: .85rem;
}

.service-modal .modal-body {
    padding: 28px 30px 30px;
}

.service-form .form-label {
    margin-bottom: 7px;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 800;
}

.service-form .form-control,
.service-form .form-select {
    min-height: 48px;
    padding: 11px 13px;
    border-color: var(--line);
    border-radius: 12px;
    color: var(--ink);
    background-color: #fbfdff;
    font-size: .88rem;
    box-shadow: none;
}

.service-form textarea.form-control {
    min-height: 120px;
}

.service-form .form-control:focus,
.service-form .form-select:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, .1);
}

.form-error {
    display: block;
    margin-top: 5px;
    color: #b42318;
    font-size: .72rem;
}

.service-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
}

.service-form-footer > small {
    max-width: 360px;
    color: var(--muted);
    font-size: .72rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

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

@media (max-width: 1199.98px) {
    .site-navbar .navbar-collapse {
        margin-top: 10px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }

    .site-navbar .nav-link {
        padding: 9px 4px !important;
    }

    .site-navbar .nav-link::after {
        display: none;
    }

    .navbar-actions {
        margin-top: 12px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-step {
        border: 1px solid var(--line);
        border-radius: var(--radius) !important;
    }
}

@media (max-width: 991.98px) {
    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        min-height: 680px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(4, 20, 39, .96), rgba(5, 30, 57, .72));
    }

    .hero-content {
        padding-top: 60px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        max-width: 650px;
        margin-top: 20px;
    }

    .about-visual,
    .about-visual img,
    .about-placeholder {
        min-height: 480px;
        height: 480px;
    }

    .signup-options {
        grid-template-columns: 1fr;
    }

    .signup-card {
        min-height: 290px;
    }

    .faq-intro {
        position: static;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    :root {
        --navbar-height: 72px;
    }

    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    .top-bar-contacts > * {
        padding: 0 8px;
    }

    .brand-lockup img {
        max-width: 120px;
        height: 42px;
    }

    .brand-copy small {
        display: none;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: stretch !important;
    }

    .navbar-actions .btn,
    .navbar-actions form,
    .navbar-actions form button {
        width: 100%;
    }

    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        min-height: 640px;
    }

    .hero-content {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        min-height: 110px;
        padding: 20px;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 78px 0;
    }

    .about-visual,
    .about-visual img,
    .about-placeholder {
        min-height: 390px;
        height: 390px;
    }

    .service-card {
        min-height: 300px;
    }

    .project-card,
    .project-card img,
    .project-placeholder {
        min-height: 410px;
    }

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

    .process-step {
        min-height: 250px;
    }

    .process-step > i {
        margin-bottom: 38px;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .portfolio-card,
    .portfolio-card:nth-child(n) {
        grid-column: 1;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .service-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .service-form-footer .btn {
        width: 100%;
    }
}

@media (max-width: 479.98px) {
    .brand-copy strong {
        max-width: 145px;
    }

    .hero-eyebrow {
        font-size: .64rem;
    }

    .hero-lead {
        font-size: .96rem;
    }

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

    .trust-item,
    .trust-item:first-child {
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .about-visual {
        border-radius: var(--radius);
    }

    .about-seal {
        right: 18px;
        bottom: 18px;
    }

    .empty-showcase {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .signup-panel,
    .contact-panel {
        border-radius: var(--radius);
    }

    .signup-card {
        min-height: 310px;
    }

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

    .contact-actions .btn {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 52px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-button span {
        display: none;
    }

    .back-to-top {
        right: 21px;
        bottom: 78px;
    }

    .service-modal .modal-header,
    .service-modal .modal-body {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* AngoInova media showcase and accessibility refresh */
body {
    background: #eaf4ff;
}

.section-about,
.process-section,
.knowledge-section,
.brochure-section {
    background: #eff7ff;
}

.section-soft {
    background: #e4f1ff;
}

.trust-strip,
.contact-section {
    background: #edf6ff;
}

.service-card,
.testimonial-card,
.faq-accordion .accordion-item,
.faq-accordion .accordion-button,
.knowledge-card,
.empty-showcase-light {
    background: #f8fbff;
}

.brand-lockup img {
    overflow: hidden;
    border: 1px solid rgba(11, 94, 215, .12);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(7, 27, 51, .1);
}

.brand-lockup-light img {
    border-color: rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
}

.top-bar-address {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    overflow: hidden;
    color: rgba(255, 255, 255, .84);
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.construction-animation-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(53, 196, 232, .14), transparent 28%),
        #f5faff;
}

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

.construction-phase {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(7, 27, 51, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}

.construction-phase img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.construction-phase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 27, 51, .05) 20%, rgba(7, 27, 51, .94) 100%),
        linear-gradient(90deg, rgba(11, 94, 215, .18), transparent 60%);
}

.construction-phase-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: end;
    padding: 28px;
    color: rgba(255, 255, 255, .72);
}

.construction-phase-number {
    align-self: start;
    color: var(--cyan);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.construction-phase-content small {
    display: block;
    margin-bottom: 5px;
    color: #9ee8f9;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.construction-phase-content h3 {
    margin: 0 0 7px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 850;
    letter-spacing: -.03em;
}

.construction-phase-content p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.55;
}

.construction-phase-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.construction-phase-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
}

.construction-phase.is-visible .construction-phase-progress {
    animation: construction-progress 1.35s cubic-bezier(.2, .7, .2, 1) var(--phase-delay) forwards;
}

.construction-phase.is-visible .construction-phase-icon {
    animation: construction-pulse 2.4s ease-in-out calc(var(--phase-delay) + 900ms) infinite;
}

.construction-phase:hover img {
    transform: scale(1.055);
}

@keyframes construction-progress {
    to { transform: scaleX(1); }
}

@keyframes construction-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(53, 196, 232, 0); }
    45% { box-shadow: 0 0 0 9px rgba(53, 196, 232, .12); }
}

.media-gallery-section {
    overflow: hidden;
}

.gallery-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.gallery-filter {
    padding: 9px 15px;
    border: 1px solid #cbdced;
    border-radius: 999px;
    color: #405875;
    background: rgba(255, 255, 255, .74);
    font-size: .76rem;
    font-weight: 800;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.gallery-filter:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-1px);
}

.gallery-filter.is-active {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

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

.real-gallery-card {
    position: relative;
    min-height: 310px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    color: inherit;
    background: #dbe9f6;
    box-shadow: 0 12px 34px rgba(7, 27, 51, .09);
    cursor: zoom-in;
    text-align: left;
}

.real-gallery-card:nth-child(7n + 1) {
    grid-row: span 2;
    min-height: 638px;
}

.real-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter 400ms ease;
}

.real-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 27, 51, .88) 100%);
}

.real-gallery-copy {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.real-gallery-copy small {
    margin-bottom: 5px;
    color: #9ee8f9;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.real-gallery-copy strong {
    font-size: 1.03rem;
    font-weight: 850;
}

.real-gallery-zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: white;
    background: rgba(7, 27, 51, .42);
    opacity: 0;
    backdrop-filter: blur(9px);
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition);
}

.real-gallery-card:hover img,
.real-gallery-card:focus-visible img {
    filter: saturate(1.06);
    transform: scale(1.045);
}

.real-gallery-card:hover .real-gallery-zoom,
.real-gallery-card:focus-visible .real-gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.video-showcase-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 8%, rgba(53, 196, 232, .18), transparent 28%),
        linear-gradient(135deg, #06172c, #0c294b);
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    width: min(100%, 980px);
    margin: 0 auto;
}

.video-story {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.video-frame {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    place-items: center;
    background: #020810;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-duration {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 27, 51, .7);
    backdrop-filter: blur(9px);
    font-size: .7rem;
    font-weight: 800;
}

.video-story-copy {
    padding: 24px 26px 28px;
}

.video-story-copy small {
    color: #9ee8f9;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.video-story-copy h3 {
    margin: 7px 0 8px;
    color: var(--white);
    font-size: 1.32rem;
    font-weight: 850;
    letter-spacing: -.03em;
}

.video-story-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
}

.brochure-section {
    background:
        linear-gradient(90deg, rgba(11, 94, 215, .035) 1px, transparent 1px),
        linear-gradient(rgba(11, 94, 215, .035) 1px, transparent 1px),
        #f5faff;
    background-size: 28px 28px;
}

.brochure-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid #d7e6f5;
    border-radius: var(--radius-lg);
    background: rgba(247, 251, 255, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.brochure-copy h2 {
    margin: 8px 0 18px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 880;
    letter-spacing: -.055em;
}

.brochure-highlights {
    display: grid;
    gap: 9px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.brochure-highlights li {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #314963;
    font-size: .83rem;
    font-weight: 750;
}

.brochure-highlights i {
    color: var(--blue);
    font-size: 1.1rem;
}

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

.brochure-pages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    perspective: 1200px;
}

.brochure-pages a {
    overflow: hidden;
    border: 1px solid #d8e5f1;
    border-radius: 14px;
    background: white;
    box-shadow: 0 10px 26px rgba(7, 27, 51, .1);
    transition: transform 350ms ease, box-shadow 350ms ease;
}

.brochure-pages a:nth-child(odd) {
    transform: translateY(13px);
}

.brochure-pages a:hover {
    z-index: 1;
    box-shadow: 0 18px 38px rgba(7, 27, 51, .16);
    transform: translateY(-4px) rotateX(1deg);
}

.brochure-pages img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    color: var(--white);
    background: #031020;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.gallery-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, .1);
}

.gallery-modal .modal-body {
    display: grid;
    min-height: 300px;
    max-height: 78vh;
    padding: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    background: #01070e;
}

.gallery-modal-stage {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 260px;
    overflow: hidden;
    place-items: center;
    touch-action: pan-y;
}

.gallery-modal .modal-body img {
    width: 100%;
    max-height: calc(78vh - 54px);
    object-fit: contain;
    opacity: 1;
    user-select: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-modal .modal-body img.is-changing {
    opacity: .35;
    transform: scale(.992);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 27, 51, .72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: background var(--transition), transform var(--transition);
}

.gallery-modal-nav:hover,
.gallery-modal-nav:focus-visible {
    color: var(--white);
    background: var(--blue);
    transform: translateY(-50%) scale(1.06);
}

.gallery-modal-prev {
    left: 18px;
}

.gallery-modal-next {
    right: 18px;
}

.gallery-modal-status {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .58);
    font-size: .72rem;
}

.gallery-modal-status > span:first-child {
    color: var(--white);
    font-weight: 850;
}

.gallery-modal-status i {
    margin-right: 5px;
    color: var(--cyan);
}

.footer-contact {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    font-size: .76rem;
    font-style: normal;
}

.footer-contact > * {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, .58);
}

.footer-contact i {
    color: var(--cyan);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .055);
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    border-color: rgba(53, 196, 232, .45);
    color: var(--white);
    background: rgba(53, 196, 232, .15);
    transform: translateY(-2px);
}

.cookie-consent {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 1090;
    display: grid;
    width: min(calc(100% - 44px), 780px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    color: rgba(255, 255, 255, .7);
    background: rgba(3, 18, 37, .96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
    opacity: 0;
    backdrop-filter: blur(18px);
    transform: translateY(22px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(53, 196, 232, .24);
    border-radius: 14px;
    color: var(--cyan);
    background: rgba(53, 196, 232, .1);
    font-size: 1.2rem;
}

.cookie-consent-copy strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-size: .88rem;
}

.cookie-consent-copy p {
    margin: 0;
    font-size: .74rem;
    line-height: 1.55;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
}

.btn-cookie-primary,
.btn-cookie-secondary {
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 11px;
    font-size: .72rem;
    font-weight: 850;
    white-space: nowrap;
}

.btn-cookie-primary {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue);
}

.btn-cookie-secondary {
    border-color: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 991.98px) {
    .construction-phases,
    .real-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .construction-phase:last-child {
        grid-column: 1 / -1;
        min-height: 360px;
    }

    .video-showcase-grid,
    .brochure-panel {
        grid-template-columns: 1fr;
    }

    .video-showcase-grid {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .top-bar-address {
        max-width: 52vw;
        font-size: .68rem;
    }

    .construction-phases,
    .real-gallery {
        grid-template-columns: 1fr;
    }

    .construction-phase,
    .construction-phase:last-child {
        grid-column: auto;
        min-height: 390px;
    }

    .real-gallery-card,
    .real-gallery-card:nth-child(7n + 1) {
        grid-row: auto;
        min-height: 360px;
    }

    .gallery-toolbar {
        flex-wrap: nowrap;
        margin-right: -20px;
        padding-right: 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .gallery-toolbar::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter {
        flex: 0 0 auto;
    }

    .brochure-pages {
        gap: 8px;
    }

    .brochure-actions {
        flex-direction: column;
    }

    .brochure-actions .btn {
        width: 100%;
    }

    .gallery-modal-nav {
        width: 46px;
        height: 46px;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-status > span:last-child {
        display: none;
    }

    .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .cookie-consent-actions {
        grid-column: 1 / -1;
    }

    .cookie-consent-actions .btn {
        flex: 1 1 0;
    }
}

@media (max-width: 479.98px) {
    .top-bar-address {
        max-width: 58vw;
    }

    .top-bar-contacts a:not(:first-child) {
        display: none !important;
    }

    .construction-phase-content {
        grid-template-columns: auto 1fr;
        padding: 22px;
    }

    .construction-phase-icon {
        display: none;
    }

    .brochure-panel {
        padding: 24px 18px 30px;
        border-radius: var(--radius);
    }
}

@media (prefers-reduced-motion: reduce) {
    .construction-phase.is-visible .construction-phase-progress,
    .construction-phase.is-visible .construction-phase-icon {
        animation: none;
    }

    .construction-phase-progress {
        transform: scaleX(1);
    }
}

/* Typographie de l'accueil : une présence plus élégante, sans effet trop gras. */
.home-page .brand-copy strong,
.home-page .hero-title,
.home-page .section-title,
.home-page .contact-copy h2,
.home-page .signup-panel h2,
.home-page .brochure-copy h2 {
    font-weight: 600;
}

.home-page .site-navbar .nav-link,
.home-page .hero-eyebrow,
.home-page .section-kicker,
.home-page .service-card h3,
.home-page .project-content h3,
.home-page .knowledge-body h3,
.home-page .construction-phase-content h3,
.home-page .video-story-copy h3 {
    font-weight: 500;
}

.home-page .trust-item strong,
.home-page .real-gallery-copy strong {
    font-weight: 600;
}

.home-page .brand-copy small,
.home-page .trust-item span,
.home-page .service-link,
.home-page .text-link,
.home-page .project-content > span,
.home-page .knowledge-body > span,
.home-page .construction-phase-number,
.home-page .construction-phase-content small,
.home-page .real-gallery-copy small,
.home-page .video-story-copy small,
.home-page .brochure-highlights li {
    font-weight: 600;
}

.home-page .btn,
.home-page .hero-proof-label,
.home-page .hero-proof strong,
.home-page .process-step h3,
.home-page .portfolio-card h3,
.home-page .signup-card h3,
.home-page .faq-accordion .accordion-button {
    font-weight: 600;
}
