/* ============================================================
   BLUEWING MARINE BANGLADESH
   MAIN STYLESHEET
   ============================================================ */


/* ============================================================
   01. CSS VARIABLES
   These variables make it easy to change the main design later.
   ============================================================ */

:root {

    /* Brand colors */
    --blue: #0000ec;
    --blue-dark: #00009f;
    --blue-deep: #000071;
    --white: #ffffff;

    /* Neutral colors */
    --ink: #0a0a12;
    --ink-soft: #22222c;
    --muted: #6c6c78;
    --light: #f4f4f7;
    --lighter: #fafafd;
    --line: #dcdce4;
    --line-dark: #2d2d38;

    /* Fonts */
    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Layout */
    --container: 1220px;
    --nav-height: 88px;

    /* Transition */
    --ease: cubic-bezier(.2,.7,.2,1);
}


/* ============================================================
   02. RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}


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


body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;

    background: var(--white);
    color: var(--ink);

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
}


body.menu-open {
    overflow: hidden;
}


img,
svg,
iframe {
    max-width: 100%;
}


img {
    display: block;
}


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


button,
input,
textarea {
    font: inherit;
}


button {
    border: 0;
}


ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* ============================================================
   03. ACCESSIBILITY
   ============================================================ */

:focus-visible {
    outline: 3px solid #73a2ff;
    outline-offset: 4px;
}


/* ============================================================
   04. GLOBAL CONTAINER
   ============================================================ */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* ============================================================
   05. HEADER / NAVBAR
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: var(--nav-height);

    background: var(--blue);

    color: var(--white);

    transition:
        height .35s var(--ease),
        box-shadow .35s var(--ease);
}


.site-header.is-scrolled {
    height: 70px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .18);
}


.nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    position: relative;
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    position: absolute;
    left: 24px;
}

.brand-mark {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;
}


.brand-name {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.brand-name strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.02em;
}


.brand-name small {
    margin-top: 4px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .22em;
    text-transform: uppercase;

    opacity: .75;
}


/* ============================================================
   DESKTOP NAV
   ============================================================ */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.desktop-nav a {
    position: relative;

    padding: 10px 0;

    color: rgba(255, 255, 255, .82);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .03em;

    transition:
        color .25s ease,
        opacity .25s ease;
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: var(--white);

    transition: width .3s var(--ease);
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--white);
}


.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


/* ============================================================
   NAV ACTIONS
   ============================================================ */

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

    position: absolute;
    right: 110px;
}


.nav-phone {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    font-size: 12px;
    font-weight: 600;
}


.phone-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background: #6dff9f;

    box-shadow:
        0 0 0 4px rgba(109, 255, 159, .14);
}


.btn {
    min-height: 48px;

    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 20px;

    border: 1px solid transparent;

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: .01em;

    cursor: pointer;

    transition:
        transform .25s var(--ease),
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}


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


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


.btn-primary:hover {
    background: var(--blue-dark);
}


.btn-outline {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.04);

    color: var(--white);
}


.btn-outline:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--blue);
}


.btn-light {
    background: var(--white);
    color: var(--blue);
}


.btn-light:hover {
    background: #e9e9ff;
}


.btn-nav {
    min-height: 42px;

    padding: 9px 16px;

    background: var(--white);
    color: var(--blue);

    font-size: 12px;
}


.btn-arrow {
    font-size: 17px;
    line-height: 1;
}


/* ============================================================
   MOBILE MENU TOGGLE
   ============================================================ */

.menu-toggle {
    width: 46px;
    height: 46px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: transparent;

    color: var(--white);

    cursor: pointer;

    position: absolute;
    right: 24px;
}


.menu-toggle i {
    position: relative;

    width: 24px;
    height: 18px;

    display: block;

    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    font-size: 0;

    transition: border-color .2s ease;
}


.menu-toggle i::after {
    content: "";

    position: absolute;
    top: 6px;
    left: 0;

    width: 24px;
    height: 2px;

    background: currentColor;

    transition:
        opacity .2s ease,
        transform .35s var(--ease);
}


.menu-toggle.is-open i {
    border-color: transparent;
}


.menu-toggle.is-open i::before {
    content: "";

    position: absolute;
    top: 8px;
    left: 0;

    width: 24px;
    height: 2px;

    background: currentColor;

    transform: rotate(45deg);
}


.menu-toggle.is-open i::after {
    top: 8px;

    transform: rotate(-45deg);
}


.menu-toggle:hover {
    transform: rotate(4deg);
}


/* ============================================================
   MOBILE SLIDE-IN MENU
   ============================================================ */

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;
    z-index: 1200;

    width: min(88vw, 430px);
    height: 100vh;

    background: var(--blue);
    color: var(--white);

    transform: translateX(100%);

    visibility: hidden;

    transition:
        transform .45s var(--ease),
        visibility .45s ease;

    overflow-y: auto;
}


.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}


.mobile-menu-inner {
    min-height: 100%;

    display: flex;
    flex-direction: column;

    padding:
        100px 28px 32px;
}


.mobile-menu-header {
    display: flex;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255,255,255,.22);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .15em;
    text-transform: uppercase;
}


.mobile-menu-route {
    opacity: .6;
}


.mobile-nav {
    display: flex;
    flex-direction: column;

    margin-top: 22px;
}


.mobile-nav a {
    min-height: 64px;

    display: flex;
    align-items: center;

    gap: 18px;

    border-bottom: 1px solid rgba(255,255,255,.15);

    color: rgba(255,255,255,.84);

    font-family: var(--font-heading);
    font-size: clamp(25px, 7vw, 34px);
    font-weight: 600;

    transition:
        color .2s ease,
        padding-left .25s ease;
}


.mobile-nav a span {
    width: 34px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;

    opacity: .55;
}


.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--white);
    padding-left: 7px;
}


.mobile-menu-contact {
    display: flex;
    flex-direction: column;

    margin-top: auto;
    padding-top: 35px;
}


.mobile-menu-contact p {
    margin: 0 0 8px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .15em;
    text-transform: uppercase;

    opacity: .6;
}


.mobile-menu-contact > a:not(.btn) {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}


.mobile-menu-contact .mobile-email {
    margin-top: 4px;

    font-family: var(--font-body);
    font-size: 13px !important;

    opacity: .8;
}


.mobile-menu-contact .btn {
    margin-top: 22px;

    width: 100%;
}


/* Overlay */

.mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 1100;

    background: rgba(0,0,0,.62);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   06. HERO
   ============================================================ */

.hero {
    position: relative;

    min-height: calc(100vh - var(--nav-height));
    min-height: 680px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        radial-gradient(circle at top left, rgba(78,112,255,.28), transparent 38%),
        linear-gradient(135deg, #060814 0%, var(--ink) 40%, #12182b 100%);
    color: var(--white);
}


.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(18px);
    opacity: .7;
    pointer-events: none;
}


.hero::before {
    width: 260px;
    height: 260px;
    right: 8%;
    top: 14%;
    background: rgba(145, 170, 255, .24);
    animation: floatOrb 12s ease-in-out infinite alternate;
}


.hero::after {
    width: 180px;
    height: 180px;
    left: 8%;
    bottom: 18%;
    background: rgba(77, 255, 168, .13);
    animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}


.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}


.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
    transform: scale(1.08);
    animation: heroPan 18s ease-in-out infinite alternate;
}


.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3,3,14,.92) 0%,
            rgba(3,3,14,.70) 43%,
            rgba(3,3,14,.33) 76%,
            rgba(3,3,14,.52) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.72) 0%,
            transparent 55%
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 100px;
    padding-bottom: 92px;
    transform: translate3d(0,0,0);
    transition: transform .35s var(--ease);
}


.hero-kicker {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}


.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #67f89b;

    box-shadow:
        0 0 0 5px rgba(103,248,155,.13);
}


.hero-title {
    max-width: 950px;

    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(56px, 8vw, 110px);
    font-weight: 600;

    line-height: .94;
    letter-spacing: -.055em;
}


.hero-line {
    display: block;
    overflow: hidden;
}


.hero-title em {
    color: #a8c3ff;
    font-style: normal;
}


.hero-copy {
    max-width: 640px;

    margin: 28px 0 0;

    color: rgba(255,255,255,.76);

    font-size: 16px;
    line-height: 1.75;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/* Animation */

.hero-animate {
    animation:
        heroEntry .9s var(--ease) both;
}


.hero-kicker {
    animation-delay: .1s;
}


.hero-title .hero-line:first-child {
    animation:
        heroLine .9s .22s var(--ease) both;
}


.hero-title .hero-line:nth-child(2) {
    animation:
        heroLine .9s .38s var(--ease) both;
}


.hero-copy {
    animation-delay: .55s;
}


.hero-buttons {
    animation-delay: .7s;
}


.hero-stats {
    animation-delay: .85s;
}


@keyframes heroEntry {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes heroLine {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes heroPan {
    0% {
        transform: scale(1.08) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.14) translate3d(-10px, 8px, 0);
    }
}


@keyframes serviceMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@keyframes floatOrb {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(15px, -18px, 0) scale(1.08);
    }
}


/* ============================================================
   HERO STATS
   ============================================================ */

.hero-stats {
    display: flex;

    max-width: 720px;

    margin-top: 66px;

    border-top: 1px solid rgba(255,255,255,.25);
}


.stat-item {
    min-width: 190px;

    padding:
        17px 26px 0 0;

    margin-right: 26px;

    border-right: 1px solid rgba(255,255,255,.18);
}


.stat-item:last-child {
    border-right: 0;
}


.stat-number {
    display: block;

    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;

    line-height: 1.1;
}


.stat-item span {
    display: block;

    margin-top: 6px;

    color: rgba(255,255,255,.65);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .12em;
    text-transform: uppercase;
}


/* ============================================================
   ROUTE MOTIF
   ============================================================ */

.hero-route,
.page-route {
    position: absolute;

    right: 7%;
    bottom: 56px;

    z-index: 3;

    width: 180px;

    display: flex;
    align-items: center;
}


.route-node {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border: 2px solid var(--white);

    border-radius: 50%;

    background: transparent;
}


.route-node-end {
    background: var(--white);
}


.route-line {
    flex: 1;

    height: 1px;

    margin: 0 10px;

    border-top: 1px dashed rgba(255,255,255,.65);
}


/* ============================================================
   07. SECTION GENERIC
   ============================================================ */

.section {
    position: relative;

    padding: 120px 0;
}


.section-heading {
    max-width: 680px;
}


.section-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .18em;
    text-transform: uppercase;
}


.section-eyebrow span:first-child {
    min-width: 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 24px;

    border: 1px solid currentColor;

    font-size: 9px;
}


.section-heading h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(42px, 5.5vw, 74px);
    font-weight: 600;

    line-height: .98;
    letter-spacing: -.045em;
}


.section-heading h2 span {
    color: var(--blue);
}


.section-heading p {
    max-width: 650px;

    margin: 24px 0 0;

    color: var(--muted);

    font-size: 15px;
}


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


html.js-enabled .reveal {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity .75s var(--ease),
        transform .75s var(--ease);
}


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


/* ============================================================
   08. SERVICES
   ============================================================ */

.section-services {
    background: var(--lighter);
}


.service-manifest {
    margin-top: 62px;

    border-top: 1px solid var(--line);
}


.service-marquee {
    position: relative;
    margin-top: 46px;
    overflow: hidden;
    padding: 10px 0 4px;
}


.service-marquee::before,
.service-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}


.service-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--lighter), transparent);
}


.service-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--lighter), transparent);
}


.service-marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: serviceMarquee 30s linear infinite;
}


.service-marquee:hover .service-marquee-track {
    animation-play-state: paused;
}


.service-row {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(32vw, 360px);
    min-width: min(32vw, 360px);
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 26px rgba(15,23,42,.05);

    transition:
        background-color .28s ease,
        transform .35s var(--ease),
        box-shadow .35s var(--ease),
        border-color .35s ease;
}


.service-row:hover {
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,245,255,.95));
    border-color: rgba(0, 0, 236, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(9,16,63,.08);
}


.service-icon {
    display: grid;
    place-items: center;
    width: 100%;
    height: 170px;
    background: linear-gradient(180deg, rgba(12, 74, 110, 0.08), rgba(12, 74, 110, 0.02));
    border-bottom: 1px solid rgba(9,16,63,.06);
    color: var(--blue);
    font-size: 54px;
    line-height: 1;
}


.service-content {
    padding: 18px 18px 0;
}


.service-content h3 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;

    letter-spacing: -.025em;
}


.service-content p {
    max-width: 690px;

    margin: 8px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}


@keyframes serviceMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 980px) {
    .service-row {
        width: min(72vw, 360px);
        min-width: min(72vw, 360px);
    }
}


@media (max-width: 640px) {
    .service-row {
        width: 82vw;
        min-width: 82vw;
    }
}


/* ============================================================
   09. WHY US
   ============================================================ */

.section-why {
    background: var(--white);
}


.why-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, .86fr);

    gap: 88px;

    align-items: center;
}


.why-list {
    margin-top: 50px;
}


.why-item {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 18px;

    padding: 21px 0;

    border-top: 1px solid var(--line);
    transition: transform .3s var(--ease), color .3s ease;
}


.why-item:hover {
    transform: translateX(8px);
}


.why-item:last-child {
    border-bottom: 1px solid var(--line);
}


.why-number {
    padding-top: 3px;

    color: var(--blue);

    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}


.why-item h3 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
}


.why-item p {
    max-width: 520px;

    margin: 6px 0 0;

    color: var(--muted);

    font-size: 13px;
}


.why-visual {
    position: relative;
}


.image-frame {
    position: relative;

    overflow: hidden;

    min-height: 580px;

    background: var(--ink);
}


.image-frame img {
    width: 100%;
    height: 100%;

    min-height: 580px;

    object-fit: cover;

    opacity: .9;
}


.image-caption {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.8),
            transparent
        );

    color: var(--white);
}


.image-caption span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;
}


.image-caption strong {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
}


.corner-mark {
    position: absolute;

    right: -1px;
    top: -27px;

    padding: 8px 11px;

    border: 1px solid var(--line);

    background: var(--white);

    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;
}


/* ============================================================
   10. TEAM
   ============================================================ */

.section-team {
    background: var(--lighter);
}


.section-heading-split {
    max-width: none;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}


.section-heading-split > p {
    max-width: 370px;

    margin: 0 0 5px;
}


.team-layout {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 26px;

    margin-top: 58px;
}


/* Founder */

.founder-card {
    display: grid;

    grid-template-columns: 1fr;

    border: 1px solid var(--line);

    background: var(--white);
}


.founder-image {
    position: relative;

    height: 390px;

    overflow: hidden;

    background: #ddd;
}


.founder-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 30%;
}


.founder-tag {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 10px;

    background: var(--blue);
    color: var(--white);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}


.founder-info {
    position: relative;

    padding: 30px;
}


.team-code {
    margin-bottom: 25px;

    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .15em;
}


.founder-info h3 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;

    line-height: 1.05;
}


.team-role {
    margin: 6px 0 20px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.founder-info > p:not(.team-role) {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


.team-contact-list {
    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid var(--line);
}


.team-contact-list a {
    display: flex;
    flex-direction: column;

    padding: 8px 0;

    font-size: 13px;
}


.team-contact-list a span {
    margin-bottom: 1px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}


/* Small team */

.team-small-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.team-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;

    padding: 18px 18px 20px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: var(--white);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}


.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(17, 24, 39, .08);
}


.team-avatar {
    position: relative;
    width: 110px;
    height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 229, 255, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.9), 0 12px 24px rgba(131, 141, 255, 0.12);
    overflow: hidden;
}


.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.team-card-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;

    min-width: 0;
}


.team-card-info > span {
    display: none;
}


.team-card-info h3 {
    margin: 0 0 8px;

    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;

    line-height: 1.15;
}


.team-card-info p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.45;
}


@media (max-width: 980px) {
    .team-small-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}


@media (max-width: 640px) {
    .team-small-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   11. CONTACT
   ============================================================ */

.section-contact {
    background: var(--ink);
    color: var(--white);
}


.section-contact .section-eyebrow {
    color: #8eaaff;
}


.section-contact .section-heading h2 span {
    color: #8eaaff;
}


.section-contact .section-heading p {
    color: rgba(255,255,255,.62);
}


.contact-shell {
    position: relative;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        .72fr
        1.28fr;

    gap: 70px;

    margin-top: 62px;

    padding-top: 46px;

    border-top: 1px solid rgba(255,255,255,.18);
}


.contact-block {
    padding-bottom: 31px;

    margin-bottom: 31px;

    border-bottom: 1px solid rgba(255,255,255,.14);
}


.contact-label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.45);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;
}


.contact-main-link {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -.03em;
}


.contact-block > a:not(.contact-main-link),
.contact-block address {
    display: block;

    margin: 4px 0;

    color: rgba(255,255,255,.76);

    font-size: 13px;

    font-style: normal;

    line-height: 1.8;
}


.contact-whatsapp {
    margin-top: 6px;
}


.quote-panel {
    border: 1px solid rgba(255,255,255,.18);

    background: rgba(255,255,255,.025);
}


.quote-panel-top {
    display: flex;
    justify-content: space-between;

    padding: 13px 18px;

    border-bottom: 1px solid rgba(255,255,255,.14);

    color: rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}


.quote-panel-top span:last-child {
    color: #75ffa1;
}


.quote-form {
    padding: 25px;
}


.form-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 16px;
}


.form-field {
    margin-bottom: 18px;
}


.form-field label {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.72);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.form-field input,
.form-field textarea {
    width: 100%;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 0;

    outline: none;

    padding: 13px 14px;

    background: rgba(255,255,255,.04);
    color: var(--white);

    font-family: var(--font-body);
    font-size: 13px;

    transition:
        border-color .2s ease,
        background-color .2s ease;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,.3);
}


.form-field input:focus,
.form-field textarea:focus {
    border-color: #879fff;

    background: rgba(255,255,255,.07);
}


.form-field textarea {
    resize: vertical;

    min-height: 130px;
}


.form-submit {
    width: 100%;

    margin-top: 2px;
}


.form-note {
    margin: 13px 0 0;

    color: rgba(255,255,255,.34);

    font-size: 10px;
    line-height: 1.6;
}


.map-wrapper {
    height: 380px;

    margin-top: 58px;

    border-top: 1px solid rgba(255,255,255,.18);

    padding-top: 18px;
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(1)
        contrast(1.08)
        brightness(.75);
}


/* ============================================================
   12. ABOUT PAGE HERO
   ============================================================ */

.page-hero {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--ink);
    color: var(--white);
}


.page-hero-image,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}


.page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3,3,14,.88),
            rgba(3,3,14,.39)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.75),
            transparent 65%
        );
}


.page-hero-content {
    position: relative;
    z-index: 2;

    padding-bottom: 92px;
}


.page-hero-content h1 {
    max-width: 900px;

    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 600;

    line-height: .97;
    letter-spacing: -.05em;
}


.page-hero-content h1 em {
    color: #a8c3ff;
    font-style: normal;
}


.page-hero-content p {
    max-width: 650px;

    margin: 28px 0 0;

    color: rgba(255,255,255,.74);

    font-size: 15px;
}


/* ============================================================
   13. ABOUT STORY
   ============================================================ */

.about-story {
    background: var(--white);
}


.story-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;
}


.story-copy {
    padding-top: 8px;
}


.story-copy p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: 14px;
}


.story-copy .story-lead {
    color: var(--ink);

    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;

    line-height: 1.42;
}


.story-route {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 15px;

    margin-top: 42px;

    padding-top: 28px;

    border-top: 1px solid var(--line);
}


.story-route-line {
    position: absolute;

    top: 21px;
    left: 11px;
    right: 11px;

    border-top: 1px dashed #999;

    z-index: 0;
}


.story-route-item {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;

    gap: 9px;
}


.story-route-item span {
    width: 14px;
    height: 14px;

    display: inline-grid;
    place-items: center;

    border: 3px solid var(--white);

    border-radius: 50%;

    background: var(--blue);

    color: transparent;

    box-shadow:
        0 0 0 1px var(--blue);
}


.story-route-item strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
}


/* ============================================================
   14. ABOUT PILLARS
   ============================================================ */

.about-pillars {
    background: var(--lighter);
}


.pillar-list {
    margin-top: 55px;

    border-top: 1px solid var(--line);
}


.pillar-row {
    display: grid;

    grid-template-columns: 60px 220px minmax(0,1fr);

    gap: 22px;
    align-items: center;

    padding: 28px 0;

    border-bottom: 1px solid var(--line);
}


.pillar-index {
    color: var(--blue);

    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}


.pillar-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;

    letter-spacing: -.03em;
}


.pillar-row p {
    max-width: 640px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* ============================================================
   15. FOUNDER SPOTLIGHT
   ============================================================ */

.founder-spotlight {
    background: var(--white);
}


.founder-quote {
    display: grid;

    grid-template-columns: 330px minmax(0,1fr);

    border: 1px solid var(--line);

    background: var(--lighter);
}


.quote-photo {
    position: relative;

    min-height: 480px;

    overflow: hidden;

    background: #ddd;
}


.quote-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;
}


.quote-photo > span {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 10px;

    background: var(--blue);
    color: var(--white);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;
}


.quote-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 54px;
}


.quote-mark {
    position: absolute;

    top: 26px;
    left: 44px;

    color: var(--blue);

    font-family: Georgia, serif;
    font-size: 88px;
    line-height: 1;
}


.quote-content blockquote {
    max-width: 760px;

    margin: 40px 0 38px;

    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 500;

    line-height: 1.2;
    letter-spacing: -.035em;
}


.quote-author {
    display: flex;
    flex-direction: column;

    padding-top: 22px;

    border-top: 1px solid var(--line);
}


.quote-author strong {
    font-family: var(--font-heading);
    font-size: 20px;
}


.quote-author span {
    margin-top: 4px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .13em;
    text-transform: uppercase;
}


.founder-contact-inline {
    display: flex;
    flex-wrap: wrap;

    gap: 9px 25px;

    margin-top: 24px;
}


.founder-contact-inline a {
    color: var(--muted);

    font-size: 12px;

    border-bottom: 1px solid var(--line);

    transition:
        color .2s ease,
        border-color .2s ease;
}


.founder-contact-inline a:hover {
    color: var(--blue);
    border-color: var(--blue);
}


/* ============================================================
   16. ABOUT CTA
   ============================================================ */

.about-cta {
    padding: 75px 0;

    background: var(--blue);
    color: var(--white);
}


.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.about-cta .section-eyebrow {
    color: #b1c4ff;

    margin-bottom: 15px;
}


.about-cta h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(38px,5vw,62px);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -.045em;
}


/* ============================================================
   16. SERVICES PAGE
   ============================================================ */

.services-page-main {
    background: #f5f7fb;
}

.services-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #08162a;
    overflow: hidden;
}

.services-page-hero-image,
.services-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.services-page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05) brightness(0.72);
}

.services-page-hero-overlay {
    background: linear-gradient(90deg, rgba(7, 14, 31, 0.9), rgba(7, 14, 31, 0.52), rgba(7, 14, 31, 0.28));
}

.services-page-hero-content {
    position: relative;
    z-index: 1;
    padding-block: 90px 56px;
    color: var(--white);
}

.services-page-hero-content h1 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.services-page-hero-content p {
    max-width: 760px;
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
}

.services-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.service-page-section {
    padding: 90px 0 20px;
}

.section-heading-wrap {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading-wrap.compact {
    margin-bottom: 32px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-kicker.alt {
    color: rgba(255,255,255,0.82);
}

.section-heading-wrap h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.section-heading-wrap p {
    margin-top: 12px;
    font-size: 1.04rem;
    color: var(--muted);
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-page-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(10, 10, 18, 0.04);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.service-page-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 236, 0.28);
    box-shadow: 0 22px 42px rgba(0, 0, 236, 0.08);
}

.service-page-image {
    height: 230px;
    overflow: hidden;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-body {
    padding: 24px 22px 26px;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    border-radius: 999px;
    background: rgba(0, 0, 236, 0.08);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.service-page-body h3 {
    margin: 16px 0 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.service-page-body p {
    margin: 0 0 16px;
    color: var(--muted);
}

.service-page-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.service-page-body li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.service-page-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.service-page-steps {
    padding: 60px 0 30px;
}

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

.step-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    padding: 28px 22px;
}

.step-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 236, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.step-item h3 {
    margin: 18px 0 8px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.step-item p {
    margin: 0;
    color: var(--muted);
}

.service-page-cta {
    padding: 30px 0 90px;
}

.service-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 36px;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    border-radius: 28px;
    color: var(--white);
    box-shadow: 0 26px 50px rgba(0, 0, 236, 0.18);
}

.service-page-cta-inner h2 {
    margin: 8px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.05em;
}

/* ============================================================
   17. FOOTER
   ============================================================ */

.site-footer {
    padding: 72px 0 0;

    background: #070711;
    color: var(--white);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        .7fr
        .9fr
        .9fr;

    gap: 55px;

    padding-bottom: 62px;
}


.footer-brand p {
    max-width: 330px;

    margin: 21px 0 0;

    color: rgba(255,255,255,.48);

    font-size: 12px;
}


.footer-logo {
    position: static;
}


.footer-label {
    display: block;

    margin-bottom: 16px;

    color: rgba(255,255,255,.36);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;
}


.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-column a {
    margin: 4px 0;

    color: rgba(255,255,255,.68);

    font-size: 12px;

    transition: color .2s ease;
}


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


.footer-column p {
    margin: 0;

    color: rgba(255,255,255,.56);

    font-size: 12px;
    line-height: 1.8;
}


.footer-bottom {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.11);

    color: rgba(255,255,255,.34);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* ============================================================
   18. FLOATING WHATSAPP
   ============================================================ */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #1dc95a;
    color: var(--white);

    box-shadow:
        0 12px 30px rgba(0,0,0,.22);
    animation: pulseWhatsApp 2.2s ease-in-out infinite;

    transition:
        transform .25s var(--ease),
        box-shadow .25s ease;
}


.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}


.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 16px 36px rgba(0,0,0,.28);
}


/* ============================================================
   19. TABLET BREAKPOINT ~980px
   ============================================================ */

@media (max-width: 980px) {

    .container {
        width: min(
            calc(100% - 38px),
            var(--container)
        );
    }


    .desktop-nav {
        gap: 18px;
    }


    .nav-phone {
        display: none;
    }


    .hero-title {
        font-size: clamp(54px, 9vw, 85px);
    }


    .hero-content {
        padding-top: 90px;
        padding-bottom: 80px;
    }


    .hero-route {
        right: 4%;
    }


    .why-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .image-frame,
    .image-frame img {
        min-height: 490px;
    }


    .team-layout {
        grid-template-columns: 1fr;
    }


    .founder-card {
        grid-template-columns: .75fr 1.25fr;
    }


    .founder-image {
        height: 100%;
        min-height: 430px;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .story-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .pillar-row {
        grid-template-columns: 50px 180px 1fr;
    }


    .founder-quote {
        grid-template-columns: 280px 1fr;
    }


    .quote-content {
        padding: 42px;
    }


    .service-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr .7fr .9fr;
    }


    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }

}


/* ============================================================
   20. MOBILE MENU BREAKPOINT ~760px
   ============================================================ */

@media (max-width: 760px) {

    :root {
        --nav-height: 72px;
    }


    html {
        scroll-padding-top: 84px;
    }


    .site-header {
        height: var(--nav-height);
    }


    .site-header.is-scrolled {
        height: 64px;
    }


    .desktop-nav,
    .nav-actions {
        display: none;
    }


    .brand {
        left: 0;
    }


    .menu-toggle {
        right: 0;
    }


    .menu-toggle {
        display: flex;
    }


    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }


    /* Hero */

    .hero {
        min-height: calc(100svh - 72px);
        min-height: 650px;
    }


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


    .hero-title {
        max-width: 650px;

        font-size: clamp(47px, 13vw, 70px);
    }


    .hero-copy {
        max-width: 550px;

        font-size: 14px;
    }

    .service-page-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .service-page-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }


    .hero-stats {
        width: 100%;

        margin-top: 48px;
    }


    .stat-item {
        min-width: 0;

        flex: 1;

        padding-right: 16px;
        margin-right: 16px;
    }


    .stat-number {
        font-size: 25px;
    }


    .stat-item span {
        font-size: 8px;
    }


    .hero-route,
    .page-route {
        right: 22px;
        bottom: 31px;

        width: 120px;
    }


    /* Generic section */

    .section {
        padding: 82px 0;
    }


    .section-heading h2 {
        font-size: clamp(40px, 11vw, 60px);
    }


    /* Services */

    .service-manifest {
        margin-top: 42px;
    }


    .service-row {
        grid-template-columns:
            33px
            78px
            minmax(0,1fr)
            25px;

        gap: 13px;

        padding: 16px 0;
    }


    .service-row:hover {
        padding-left: 5px;
        padding-right: 5px;
    }


    .service-thumb {
        width: 78px;
        height: 62px;
    }


    .service-content h3 {
        font-size: 17px;
    }


    .service-content p {
        display: none;
    }


    /* Why */

    .why-list {
        margin-top: 38px;
    }


    .image-frame,
    .image-frame img {
        min-height: 400px;
    }


    /* Team */

    .section-heading-split {
        display: block;
    }


    .section-heading-split > p {
        margin-top: 25px;
    }


    .team-small-grid {
        grid-template-columns: 1fr;
    }


    .team-card {
        grid-template-columns: 1fr;
    }


    .team-avatar {
        width: 46px;
        height: 46px;
    }


    .founder-card {
        grid-template-columns: 1fr;
    }


    .founder-image {
        height: 370px;
        min-height: 0;
    }


    /* Contact */

    .contact-main-link {
        font-size: 30px;
    }


    .map-wrapper {
        height: 300px;
    }


    /* About */

    .page-hero {
        min-height: 560px;
    }


    .page-hero-content {
        padding-bottom: 80px;
    }


    .page-hero-content h1 {
        font-size: clamp(48px, 12vw, 70px);
    }


    .story-route {
        grid-template-columns: repeat(2,1fr);

        row-gap: 24px;
    }


    .story-route-line {
        display: none;
    }


    .pillar-row {
        grid-template-columns: 38px 1fr;

        gap: 10px;
    }


    .pillar-title {
        font-size: 24px;
    }


    .pillar-row p {
        grid-column: 2;
    }


    .founder-quote {
        grid-template-columns: 1fr;
    }


    .quote-photo {
        min-height: 360px;
    }


    .quote-content {
        padding: 34px 28px;
    }


    .quote-mark {
        left: 22px;
    }


    .quote-content blockquote {
        margin-top: 38px;
    }


    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }


    /* Footer */

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


    .footer-grid > :last-child {
        grid-column: auto;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        padding: 16px 0;
    }


    .floating-whatsapp {
        right: 17px;
        bottom: 17px;

        width: 55px;
        height: 55px;
    }

}


/* ============================================================
   21. SMALL PHONES ~480px
   ============================================================ */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 26px);
    }


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


    .brand-name strong {
        font-size: 14px;
    }


    .brand-name small {
        font-size: 7px;
    }


    .hero {
        min-height: 680px;
    }


    .hero-content {
        padding-top: 55px;
        padding-bottom: 88px;
    }


    .hero-title {
        font-size: 44px;
    }


    .hero-copy {
        margin-top: 22px;

        font-size: 13px;
        line-height: 1.65;
    }


    .hero-buttons {
        flex-direction: column;
    }


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


    .hero-stats {
        margin-top: 40px;
    }


    .stat-item {
        padding-right: 9px;
        margin-right: 9px;
    }


    .stat-number {
        font-size: 21px;
    }


    .stat-item span {
        font-size: 7px;
        letter-spacing: .08em;
    }


    .service-row {
        grid-template-columns: 26px 64px minmax(0,1fr);

        gap: 10px;
    }


    .service-thumb {
        width: 64px;
        height: 55px;
    }


    .service-arrow {
        display: none;
    }


    .service-content h3 {
        font-size: 15px;
        line-height: 1.25;
    }


    .why-item {
        grid-template-columns: 32px 1fr;
    }


    .image-frame,
    .image-frame img {
        min-height: 330px;
    }


    .founder-image {
        height: 320px;
    }


    .founder-info {
        padding: 24px;
    }


    .founder-info h3 {
        font-size: 27px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .quote-form {
        padding: 20px;
    }


    .contact-main-link {
        font-size: 27px;
    }


    .map-wrapper {
        height: 250px;
    }


    .page-hero-content {
        padding-bottom: 72px;
    }


    .page-hero-content h1 {
        font-size: 46px;
    }


    .page-hero-content p {
        font-size: 13px;
    }


    .story-copy .story-lead {
        font-size: 20px;
    }


    .story-route {
        gap: 18px 10px;
    }


    .pillar-title {
        font-size: 21px;
    }


    .quote-photo {
        min-height: 300px;
    }


    .quote-content {
        padding: 28px 20px;
    }


    .quote-content blockquote {
        font-size: 27px;
    }


    .founder-contact-inline {
        flex-direction: column;
        gap: 8px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }


    .footer-grid > :last-child {
        grid-column: auto;
    }


    .footer-bottom {
        font-size: 8px;
    }


    .floating-whatsapp {
        right: 13px;
        bottom: 15px;

        width: 53px;
        height: 53px;
    }

}


/* ============================================================
   22. REDUCED MOTION
   Important for users who prefer less animation.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


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


    html.js-enabled .reveal {
        opacity: 1;
        transform: none;
    }

}