:root {
    --navy-950: #071827;
    --navy-900: #0b2234;
    --navy-800: #10344a;
    --teal-700: #087f79;
    --teal-600: #0d9a90;
    --copper-500: #c7794b;
    --copper-400: #d99363;
    --cream-100: #fbf7ef;
    --cream-200: #f3ecdf;
    --ink: #17232d;
    --muted: #5c6b75;
    --line: #dbe3e4;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(7, 24, 39, 0.10);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream-100);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.announcement {
    background: var(--navy-950);
    color: #c9d7dd;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 247, 239, 0.96);
    border-bottom: 1px solid rgba(7, 24, 39, 0.08);
    backdrop-filter: blur(16px);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #c7794b;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 21px;
    border-radius: 12px 2px 12px 2px;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-family: "Manrope", sans-serif;
    letter-spacing: 0.08em;
    font-size: 16px;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    letter-spacing: 0.16em;
    font-size: 9.5px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-link,
.mega-trigger {
    border: 0;
    background: transparent;
    color: var(--navy-900);
    padding: 30px 13px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.nav-link::after,
.mega-trigger::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 21px;
    height: 2px;
    background: var(--copper-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.mega-trigger:hover::after,
.nav-item.is-open .mega-trigger::after {
    transform: scaleX(1);
}

.mega-trigger span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.nav-item.is-open .mega-trigger span {
    transform: rotate(45deg);
}

.nav-contact {
    margin-left: 8px;
    background: #c7794b;
    color: var(--white);
    padding: 11px 17px;
    border-radius: 8px;
}

.nav-contact::after {
    display: none;
}

.nav-contact:hover {
    background: var(--navy-900);
}

.nav-item {
    position: static;
}

.mega-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-top: 3px solid var(--copper-500);
    box-shadow: 0 24px 50px rgba(7, 24, 39, 0.18);
    padding: 34px max(20px, calc((100vw - var(--container)) / 2));
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 35px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item.is-open .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-intro {
    border-right: 1px solid var(--line);
    padding-right: 28px;
}

.mega-intro h2 {
    margin: 9px 0 12px;
    font-size: 24px;
}

.mega-intro p {
    color: var(--muted);
    font-size: 13px;
}

.eyebrow {
    color: var(--teal-700);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 800;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 10px;
}

.mega-grid a {
    padding: 12px 13px;
    border-radius: 9px;
    display: grid;
    gap: 2px;
}

.mega-grid a:hover {
    background: var(--cream-200);
}

.mega-grid strong {
    font-size: 13px;
}

.mega-grid span {
    color: var(--muted);
    font-size: 11px;
}

.text-link {
    color: var(--copper-500);
    font-weight: 800;
    font-size: 13px;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy-900);
    margin: 5px auto;
}

main {
    overflow: hidden;
}

.hero {
    min-height: 710px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--navy-900);
    color: var(--white);
}

.hero-copy {
    padding: 100px max(20px, calc((100vw - var(--container)) / 2)) 100px  max(20px, calc((100vw - var(--container)) / 2));
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy .eyebrow {
    color: var(--copper-400);
}

.hero h1 {
    margin: 18px 0 22px;
    max-width: 700px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero p {
    max-width: 650px;
    color: #c8d5db;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.hero-visual {
    min-height: 710px;
    background:
        linear-gradient(135deg, rgba(13, 154, 144, 0.18), rgba(199, 121, 75, 0.05)),
        url("images/idea.jpg") center/cover;
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-900) 0%, rgba(11, 34, 52, 0.05) 45%, rgba(11, 34, 52, 0.18) 100%);
}

.hero-panel {
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: min(330px, 78%);
    padding: 25px;
    background: rgba(251, 247, 239, 0.94);
    color: var(--ink);
    border-left: 5px solid var(--copper-500);
    box-shadow: var(--shadow);
}

.hero-panel strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 8px;
    background: var(--teal-600);
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
    border: 1px solid var(--teal-600);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--teal-700);
}

.button-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.button-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.button-light {
    background: var(--cream-100);
    color: var(--navy-900);
    border-color: var(--cream-100);
}

.section {
    padding: 96px 0;
}

.section-tight {
    padding: 68px 0;
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-cream {
    background: var(--cream-200);
}

.section-teal {
    background: var(--teal-700);
    color: var(--white);
}

.section-heading {
    max-width: 790px;
    margin-bottom: 45px;
}

.section-heading h2,
.section h2,
.footer-cta h2 {
    margin: 9px 0 15px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p,
.lead {
    color: var(--muted);
    font-size: 17px;
}

.section-dark .lead,
.section-teal .lead {
    color: #d3e0e4;
}

.stats-band {
    background: var(--cream-200);
    border-bottom: 1px solid var(--line);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 35px 25px;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    color: var(--teal-700);
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.service-grid,
.industry-grid,
.capability-grid,
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.industry-card,
.capability-card,
.story-card {
    position: relative;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 245px;
    box-shadow: 0 5px 20px rgba(7, 24, 39, 0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.industry-card:hover,
.capability-card:hover,
.story-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 154, 144, 0.45);
    box-shadow: var(--shadow);
}

.card-number {
    display: inline-flex;
    color: var(--copper-500);
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.service-card h3,
.industry-card h3,
.capability-card h3,
.story-card h3 {
    margin: 30px 0 10px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.service-card p,
.industry-card p,
.capability-card p,
.story-card p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.card-arrow {
    position: absolute;
    right: 25px;
    bottom: 23px;
    color: var(--teal-700);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.split-image {
    min-height: 470px;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.image-finance {
    background-image: url("images/corporate.jpg");
}

.image-digital {
    background-image: url("images/tech.jpg");
}

.image-about {
    background-image: url("images/about.jpg");
}

.quote-card {
    padding: 40px;
    background: var(--navy-900);
    color: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.quote-card p {
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    line-height: 1.3;
}

.page-hero {
    padding: 105px 0 85px;
    background:
        linear-gradient(105deg, rgba(7, 24, 39, 0.97), rgba(11, 34, 52, 0.88)),
        url("images/header.jpg") center/cover;
    color: var(--white);
    position: relative;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: 8%;
    bottom: -80px;
    border: 1px solid rgba(217, 147, 99, 0.55);
    transform: rotate(45deg);
}

.page-hero .eyebrow {
    color: var(--copper-400);
}

.page-hero h1 {
    max-width: 850px;
    margin: 14px 0 15px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 720px;
    color: #cbd8dd;
    font-size: 18px;
}

.breadcrumb {
    color: #9fb1b8;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 800;
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.process-step {
    padding: 30px 25px 20px 0;
    border-right: 1px solid var(--line);
    margin-right: 25px;
}

.process-step:last-child {
    border-right: 0;
    margin-right: 0;
}

.process-step strong {
    color: var(--copper-500);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.process-step h3 {
    margin: 14px 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.process-step p {
    color: var(--muted);
    font-size: 14px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 70px;
}

.detail-sidebar {
    position: sticky;
    top: 115px;
    align-self: start;
    padding: 25px;
    background: var(--cream-200);
    border-left: 4px solid var(--teal-700);
}

.detail-sidebar a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.detail-sidebar a:hover {
    color: var(--teal-700);
}

.detail-copy h2 {
    font-size: 36px;
}

.detail-copy p {
    color: #43525c;
    font-size: 16px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.check-list div {
    padding: 17px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
}

.check-list div::before {
    content: "✓";
    color: var(--teal-700);
    margin-right: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 35px;
}

.contact-panel,
.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 35px;
}

.contact-panel {
    background: var(--navy-900);
    color: var(--white);
}

.contact-panel p {
    color: #c9d6dc;
}

.contact-detail {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
}

.contact-detail strong,
.contact-detail span {
    display: block;
}

.contact-detail span {
    color: #b8c8ce;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream-100);
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(13, 154, 144, 0.10);
}

.footer-cta {
    background: var(--copper-500);
    color: var(--white);
}

.footer-cta-inner {
    padding: 65px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-cta .eyebrow {
    color: #fff3e8;
}

.footer-cta h2 {
    max-width: 690px;
    margin-bottom: 7px;
}

.footer-cta p {
    max-width: 640px;
    margin: 0;
    color: #fff1e6;
}

.site-footer {
    background: var(--navy-950);
    color: #d4e0e4;
}

.footer-grid {
    padding: 65px 0 50px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 45px;
}

.footer-brand-column p {
    max-width: 370px;
    color: #9fb1b8;
}

.brand-footer .brand-copy strong {
    color: var(--white);
}

.brand-footer .brand-copy small {
    color: #8da2aa;
}

.footer-note {
    margin-top: 20px;
    color: var(--copper-400);
    font-size: 12px;
    font-weight: 700;
}

.footer-grid h3 {
    margin: 0 0 16px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.footer-grid > div:not(.footer-brand-column) a,
.footer-contact {
    display: block;
    margin: 8px 0;
    color: #9fb1b8;
    font-size: 13px;
}

.footer-grid > div:not(.footer-brand-column) a:hover {
    color: var(--copper-400);
}

.footer-contact {
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #71858e;
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .main-nav {
        gap: 0;
    }

    .nav-link,
    .mega-trigger {
        padding-left: 8px;
        padding-right: 8px;
    }

    .mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .announcement-inner span:last-child {
        display: none;
    }

    .nav-shell {
        min-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background: var(--cream-100);
        border-bottom: 1px solid var(--line);
        padding: 12px 20px 20px;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: block;
    }

    .nav-link,
    .mega-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 14px 5px;
        text-align: left;
    }

    .nav-link::after,
    .mega-trigger::after {
        display: none;
    }

    .nav-contact {
        margin: 8px 0 0;
        justify-content: center;
    }

    .nav-item {
        position: relative;
    }

    .mega-panel {
        position: static;
        display: none;
        padding: 15px 0 10px;
        grid-template-columns: 1fr;
        gap: 15px;
        border-top: 1px solid var(--line);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-item.is-open .mega-panel {
        display: grid;
    }

    .mega-intro {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 0 0 15px;
    }

    .mega-intro h2 {
        font-size: 20px;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 75px 20px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .service-grid,
    .industry-grid,
    .capability-grid,
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .detail-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2) {
        border-right: 0;
        margin-right: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .section {
        padding: 70px 0;
    }

    .stats,
    .service-grid,
    .industry-grid,
    .capability-grid,
    .story-grid,
    .check-list,
    .form-row,
    .process,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .split-image {
        min-height: 330px;
    }

    .footer-cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        padding-bottom: 28px;
    }
}

/* ============================================================
   NOVA HOMEPAGE HERO SLIDER
   ============================================================ */
.nova-hero { --hero-height: min(760px, calc(100vh - 82px)); position:relative; min-height:var(--hero-height); overflow:hidden; background:#102f3d; color:#fff; }
.nova-hero__track,.nova-hero__slide { min-height:var(--hero-height); }
.nova-hero__track { position:relative; width:100%; }
.nova-hero__slide { position:absolute; inset:0; visibility:hidden; opacity:0; pointer-events:none; transition:opacity .7s ease, visibility .7s ease; }
.nova-hero__slide.is-active { visibility:visible; opacity:1; pointer-events:auto; z-index:2; }
.nova-hero__media { position:absolute; inset:0; background-position:center; background-size:cover; transform:scale(1.02); transition:transform 6.5s ease; }
.nova-hero__slide.is-active .nova-hero__media { transform:scale(1.08); }
.nova-hero__media--one { background-image:url("images/hero-1.jpg"); }
.nova-hero__media--two { background-image:url("images/hero-2.jpg"); }
.nova-hero__media--three { background-image:url("images/hero-3.jpg"); }
.nova-hero__media--four { background-image:url("images/hero-4.jpg"); }
.nova-hero__overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(8,30,39,.94) 0%,rgba(8,30,39,.78) 42%,rgba(8,30,39,.25) 100%),linear-gradient(0deg,rgba(8,30,39,.38),transparent 50%); }
.nova-hero__container { position:relative; z-index:3; min-height:var(--hero-height); display:flex; align-items:center; padding-top:70px; padding-bottom:120px; }
.nova-hero__content { width:min(700px,100%); }
.nova-hero__eyebrow { margin:0 0 22px; color:#d8a35d; font-size:13px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.nova-hero__title { max-width:760px; margin:0 0 24px; font-size:clamp(42px,5.4vw,78px); line-height:.98; letter-spacing:-.045em; font-weight:750; }
.nova-hero__text { max-width:620px; margin:0; color:rgba(255,255,255,.86); font-size:clamp(17px,1.5vw,20px); line-height:1.75; }
.nova-hero__actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.nova-btn { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 24px; border-radius:2px; font-size:14px; font-weight:750; text-decoration:none; transition:transform .18s ease,background .18s ease,border-color .18s ease; }
.nova-btn:hover { transform:translateY(-2px); }
.nova-btn--primary { color:#102f3d; background:#d8a35d; }
.nova-btn--outline { color:#fff; border:1px solid rgba(255,255,255,.58); background:rgba(255,255,255,.04); }
.nova-hero__meta { display:flex; align-items:center; gap:13px; margin-top:42px; color:rgba(255,255,255,.72); font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.nova-hero__meta-line { width:55px; height:1px; background:#d8a35d; }
.nova-hero__controls { position:absolute; z-index:10; left:50%; bottom:30px; width:min(1180px,calc(100% - 40px)); display:flex; align-items:center; gap:14px; transform:translateX(-50%); }
.nova-hero__arrow,.nova-hero__play { border:1px solid rgba(255,255,255,.28); color:#fff; background:rgba(8,30,39,.55); backdrop-filter:blur(8px); cursor:pointer; }
.nova-hero__arrow { width:45px; height:45px; display:grid; place-items:center; font-size:19px; }
.nova-hero__dots { display:flex; align-items:center; gap:7px; }
.nova-hero__dot { width:30px; height:3px; padding:0; border:0; background:rgba(255,255,255,.34); cursor:pointer; }
.nova-hero__dot.is-active { background:#d8a35d; }
.nova-hero__play { min-height:45px; margin-left:auto; display:inline-flex; align-items:center; gap:9px; padding:0 15px; font-size:12px; font-weight:700; }
@media(max-width:768px){ .nova-hero{--hero-height:720px}.nova-hero__overlay{background:linear-gradient(90deg,rgba(8,30,39,.93),rgba(8,30,39,.68)),linear-gradient(0deg,rgba(8,30,39,.5),transparent 65%)}.nova-hero__container{align-items:flex-end;padding-top:80px;padding-bottom:125px}.nova-hero__title{font-size:clamp(39px,11vw,58px);line-height:1.02}.nova-hero__text{font-size:16px;line-height:1.65}.nova-hero__actions{display:grid;grid-template-columns:1fr}.nova-btn{width:100%}.nova-hero__controls{bottom:24px;width:calc(100% - 30px)}.nova-hero__play-label{display:none}.nova-hero__play{width:45px;justify-content:center;padding:0} }
@media(prefers-reduced-motion:reduce){.nova-hero__slide,.nova-hero__media,.nova-btn{transition:none}}

.partners-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.partners-card {
    position: relative;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 45px;
    box-shadow: 0 5px 20px rgba(7, 24, 39, 0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}