:root {
    --black: #0a0a0d;
    --grey-900: #15161b;
    --grey-800: #24262e;
    --grey-700: #3b3e48;
    --grey-600: #585c68;
    --grey-400: #9a9eab;
    --grey-300: #c4c7d0;
    --grey-200: #e2e4e9;
    --grey-100: #f0f1f4;
    --grey-50: #f8f9fb;
    --white: #ffffff;
    --blue: #2e5bff;
    --blue-light: #6c8cff;
    --blue-pale: #eaf0ff;
    --blue-dark: #1b3fcc;
    --grad: linear-gradient(135deg, #3a63ff 0%, #6c8cff 100%);
    --glow: 0 8px 30px rgba(46, 91, 255, 0.35);
    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-pill: 999px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
button:focus {
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Work Sans", sans-serif;
    color: var(--grey-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
.wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
}
h1,
h2,
h3,
h4 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
    line-height: 1.08;
    color: var(--black);
}
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-weight: 600;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--grad);
    display: inline-block;
    border-radius: 2px;
}
.eyebrow.center {
    justify-content: center;
}
.eyebrow.light {
    color: var(--blue-light);
}
section {
    padding: 104px 0;
}
:focus-visible {
    outline: 3px solid var(--blue-light);
    outline-offset: 3px;
    border-radius: 6px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13.5px;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    cursor: pointer;
    border: 2px solid transparent;
    transition:
        transform 0.18s ease,
        box-shadow 0.25s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}
.btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}
.btn:hover i {
    transform: translateX(3px);
}
.btn-grad {
    background: var(--grad);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(46, 91, 255, 0.25);
}
.btn-grad:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}
.btn-dark {
    background: var(--black);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--grey-800);
    transform: translateY(-2px);
}
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}
.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.section-head {
    max-width: 640px;
    margin-bottom: 54px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    color: var(--black);
}
.section-head p {
    color: var(--grey-600);
    font-size: 16px;
    margin-top: 16px;
}
.section-head.on-dark h2 {
    color: var(--white);
}
.section-head.on-dark p {
    color: var(--grey-400);
}

/* ---------- TOP BAR ---------- */
.topbar {
    background: var(--black);
    color: var(--grey-400);
    font-size: 13px;
    position: relative;
    z-index: 210;
}
.topbar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar-left {
    display: flex;
    gap: 26px;
    align-items: center;
}
.topbar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-left a i {
    color: var(--blue-light);
}
.topbar-left a:hover {
    color: var(--white);
}
.topbar-mid {
    color: var(--grey-300);
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar-social {
    display: flex;
    gap: 8px;
}
.topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: var(--r-pill);
    background: var(--grey-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.topbar-social a i {
    color: #fff;
    font-size: 11px;
}
.topbar-social a:hover {
    background: var(--blue);
}

/* ---------- NAV ---------- */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(10, 10, 13, 0.05);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    max-width: 1500px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 210;
}
.brand img {
    max-height: 90px;
    width: auto;
}
.brand-text {
    font-family: "Oswald", sans-serif;
    color: var(--black);
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.15;
}
.brand-text b {
    display: block;
    font-size: 20px;
    font-weight: 700;
}
nav.links {
    display: flex;
    gap: 34px;
}
nav.links a {
    color: var(--grey-700);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}
nav.links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--grad);
    border-radius: 2px;
    transition: width 0.25s ease;
}
nav.links a:hover {
    color: var(--black);
}
nav.links a:hover::after {
    width: 100%;
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-phone {
    color: var(--grey-700);
    font-family: "JetBrains Mono", monospace;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-phone .pico {
    width: 38px;
    height: 38px;
    border-radius: var(--r-pill);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-phone .pico i {
    color: var(--blue);
    font-size: 15px;
}
.nav-phone .plabel {
    font-size: 11px;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nav-phone strong {
    color: var(--black);
    display: block;
    font-size: 14px;
}

.hamburger {
    display: none;
    position: relative;
    z-index: 210;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-pill);
    border: 1px solid var(--grey-200);
    background: var(--white);
    cursor: pointer;
}
.hamburger span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        top 0.3s ease;
}
.hamburger span:nth-child(1) {
    top: 17px;
}
.hamburger span:nth-child(2) {
    top: 23px;
}
.hamburger span:nth-child(3) {
    top: 29px;
}
.hamburger.active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 36px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.25, 1);
    visibility: hidden;
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-menu nav a {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    color: var(--black);
    padding: 13px 0;
    border-bottom: 1px solid var(--grey-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu nav a span {
    color: var(--blue);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
}
.mobile-menu .mm-bottom {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-menu .mm-phone {
    font-family: "JetBrains Mono", monospace;
    font-size: 17px;
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 13, 0.35);
    z-index: 180;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 80px 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 10, 13, 0.94) 0%,
        rgba(10, 10, 13, 0.82) 42%,
        rgba(10, 10, 13, 0.45) 100%
    );
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero h1 {
    font-size: clamp(32px, 5.4vw, 72px);
    max-width: 760px;
    color: var(--white);
}
.hero p.lead {
    max-width: 520px;
    font-size: 17px;
    color: var(--grey-300);
    margin-top: 22px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
    align-items: center;
}
.watch {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 0.06em;
}
.watch .play {
    width: 52px;
    height: 52px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.watch .play i {
    color: #fff;
    font-size: 14px;
    margin-left: 2px;
}
.watch:hover .play {
    background: var(--blue);
}
.hero-badges {
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
}
.hbadge {
    position: absolute;
    background: rgba(21, 22, 27, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    pointer-events: auto;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}
.hbadge .ico {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.hbadge .ico i {
    color: #fff;
    font-size: 17px;
}
.hbadge .bt {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    color: var(--white);
    line-height: 1;
}
.hbadge .bs {
    font-size: 11.5px;
    color: var(--grey-300);
    margin-top: 3px;
}
.hbadge.b1 {
    top: 16%;
    right: 6%;
}
.hbadge.b2 {
    top: 46%;
    right: 2%;
    max-width: 230px;
}
.hbadge.b3 {
    bottom: 12%;
    right: 14%;
}
.hbadge.small .bt {
    font-size: 14px;
    text-transform: none;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
}
.hero-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.avatar-stack {
    display: flex;
}
.avatar-stack span {
    width: 38px;
    height: 38px;
    border-radius: var(--r-pill);
    border: 2px solid var(--grey-900);
    margin-left: -10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.avatar-stack span:first-child {
    margin-left: 0;
}
.hero-avatars .rev {
    font-size: 13px;
    color: var(--grey-300);
}
.hero-avatars .rev b {
    color: var(--white);
    font-family: "Oswald", sans-serif;
}

/* ---------- ABOUT ---------- */
.about {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-photo {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
}
.about-photo img {
    width: 100%;
    height: 100%;
    /*min-height: 460px;*/
    max-height: 600px;
    object-fit: cover;
}
.about-yrs {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: var(--grad);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 16px 34px rgba(10, 10, 13, 0.24);
}
.about-yrs b {
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.about-yrs span {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.about-copy h2 {
    font-size: clamp(28px, 3.2vw, 40px);
}
.about-copy p {
    color: var(--grey-600);
    margin-top: 16px;
    font-size: 15.5px;
}
.about-check {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
}
.about-check div {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14.5px;
    color: var(--grey-700);
}
.about-check .ck {
    width: 22px;
    height: 22px;
    border-radius: var(--r-pill);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.about-check .ck i {
    color: var(--blue);
    font-size: 11px;
}

.about--image-right .about-photo {
    order: 2;
}

.about--image-right .about-copy {
    order: 1;
}

/* Keep the image above the text when the layout stacks on mobile. */
@media (max-width: 767px) {
    .about--image-right .about-photo,
    .about--image-right .about-copy {
        order: initial;
    }
}

/* ---------- SERVICES ---------- */
.services {
    background: var(--grey-50);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(10, 10, 13, 0.09);
    border-color: var(--blue-light);
}
.service-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--r-md);
    background: var(--blue-pale);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon i {
    color: var(--blue);
    font-size: 24px;
}
.service-card h3 {
    font-size: 19px;
    color: var(--black);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--grey-600);
    font-size: 14.5px;
}

.service-card {
    color: inherit;
    text-decoration: none;
}

a.service-card {
    display: block;
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 12px;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-only {
    padding: 100px 0;
}

.text-only-inner {
    max-width: 900px;
}

.text-only.align-center .text-only-inner {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.text-only-content > :last-child {
    margin-bottom: 0;
}

.text-only .btn {
    margin-top: 28px;
}

@media (max-width: 767px) {
    .text-only {
        padding: 70px 0;
    }
}

/* ---------- TRUST STRIP ---------- */
.trust {
    background: var(--white);
    padding: 40;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--grey-200);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.trust-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 30px 28px;
    border-right: 1px solid var(--grey-200);
}
.trust-item:last-child {
    border-right: none;
}
.trust-item .ti {
    width: 52px;
    height: 52px;
    border-radius: var(--r-pill);
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.trust-item .ti i {
    color: var(--blue);
    font-size: 21px;
}
.trust-item b {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--black);
    letter-spacing: 0.02em;
    display: block;
}
.trust-item span {
    font-size: 13px;
    color: var(--grey-600);
}

/* ---------- PROJECTS ---------- */
.projects {
    background: var(--white);
}
.proj-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--grey-900);
    color: var(--white);
    height: 420px;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover img {
    transform: scale(1.06);
}
.project-card .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    background: var(--grad);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
}
.project-card .caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    background: linear-gradient(to top, rgba(10, 10, 13, 0.94) 10%, transparent);
    z-index: 2;
}
.project-card .caption h4 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 4px;
}
.project-card .caption span {
    font-size: 13px;
    color: var(--grey-300);
    font-family: "JetBrains Mono", monospace;
}
.project-card .caption .plink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--blue-light);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}
.project-card:hover .caption .plink {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--black);
    color: var(--white);
}
.testi-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.testi-viewport {
    overflow: hidden;
}
.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.25, 1);
}
.testi-slide {
    flex: 0 0 100%;
    padding: 6px;
}
.testi-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: var(--r-lg);
    padding: 44px 42px;
    position: relative;
}
.testi-card .quote {
    position: absolute;
    top: 30px;
    right: 36px;
    color: var(--blue);
    opacity: 0.35;
    font-size: 44px;
}
.testi-card .stars {
    color: var(--blue-light);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-card p {
    font-size: 18px;
    color: var(--grey-100);
    font-style: italic;
    max-width: 640px;
}
.testi-who {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}
.testi-who .av {
    width: 52px;
    height: 52px;
    border-radius: var(--r-pill);
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}
.testi-who b {
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    color: var(--white);
    display: block;
    letter-spacing: 0.02em;
}
.testi-who span {
    font-size: 12.5px;
    color: var(--grey-400);
    font-family: "JetBrains Mono", monospace;
}
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 32px;
}
.testi-arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--r-pill);
    border: 1px solid var(--grey-700);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.testi-arrow i {
    color: #fff;
    font-size: 15px;
}
.testi-arrow:hover {
    background: var(--grad);
    border-color: transparent;
}
.testi-dots {
    display: flex;
    gap: 9px;
}
.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: var(--r-pill);
    background: var(--grey-700);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}
.testi-dot.active {
    width: 26px;
    background: var(--grad);
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    overflow: hidden;
    background: var(--grad);
    color: var(--white);
}
.cta .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 70px;
    padding-bottom: 70px;
}
.cta h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    color: var(--white);
    max-width: 600px;
}
.cta p {
    color: rgba(255, 255, 255, 0.88);
    margin-top: 12px;
    max-width: 520px;
}
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-actions .btn i {
    transform: none;
}
.cta-actions .btn:hover i {
    transform: none;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--black);
    color: var(--grey-400);
    padding: 72px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--grey-800);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-brand img {
    max-height: 80px;
}
.footer-brand span {
    font-family: "Oswald", sans-serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
footer p {
    font-size: 14px;
    max-width: 290px;
}
footer h5 {
    font-family: "JetBrains Mono", monospace;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
footer ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}
footer ul li a:hover {
    color: var(--blue-light);
}
footer ul li .ar {
    color: var(--blue);
    font-size: 10px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--r-pill);
    background: var(--grey-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.footer-social a i {
    color: #fff;
    font-size: 14px;
}
.footer-social a:hover {
    background: var(--blue);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom ul li {
    margin: 0 5px;
    display: block;
    font-size: 12.5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
    }
    .trust-item:last-child {
        border-bottom: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-phone {
        /*display: none;*/
    }
    .hero-badges {
        display: none;
    }
}
@media (max-width: 980px) {
    nav.links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
@media (max-width: 900px) {
    .topbar-mid {
        display: none;
    }
    .topbar-left a:nth-child(2) {
        display: none;
    }
    .topbar-right {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .about-photo img {
        min-height: 360px;
    }
}
@media (max-width: 600px) {
    .wrap {
        padding: 0 20px;
    }
    section {
        padding: 60px 0;
    }
    .topbar {
        display: none;
    }
    .nav-inner {
        padding: 12px 20px;
    }
    .nav-cta .btn-grad {
        display: none;
    }
    .hero {
        min-height: auto;
        padding: 56px 0;
    }
    .hero p.lead {
        font-size: 15.5px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .project-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .project-card {
        height: 320px;
    }
    .about-photo img {
        min-height: 300px;
    }
    .about-yrs {
        left: 16px;
        bottom: 16px;
        padding: 14px 18px;
    }
    .about-yrs b {
        font-size: 30px;
    }
    .testi-card {
        padding: 32px 24px;
    }
    .testi-card p {
        font-size: 15.5px;
    }
    .testi-card .quote {
        font-size: 34px;
        top: 22px;
        right: 24px;
    }
    .cta-actions {
        width: 100%;
    }
    .cta-actions .btn {
        flex: 1;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mobile-menu nav a {
        font-size: 24px;
    }
}
@media (max-width: 400px) {
    .brand-text {
        display: none;
    }
    .hero h1 {
        font-size: 30px;
    }
    .cta-actions {
        flex-direction: column;
    }
    .cta-actions .btn {
        width: 100%;
    }
}
