
:root {
    --ink: #111827;
    --ink-soft: #243041;
    --body: #5b6472;
    --muted: #7b8494;
    --surface: #ffffff;
    --surface-soft: #f6f8fb;
    --surface-tint: #eef6f4;
    --border: #e4e8ef;
    --primary: #1f5eff;
    --primary-dark: #1847bf;
    --accent: #0f8f7a;
    --accent-soft: #dff7f1;
    --gold: #b7791f;

    --shadow-sm: 0 8px 22px rgba(17, 24, 39, 0.07);
    --shadow-md: 0 18px 46px rgba(17, 24, 39, 0.12);
}


/* =========================================================
   GLOBAL
   ========================================================= */

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

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

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

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.65;
    overflow-x: hidden;
}

main {
    min-height: 64vh;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

.container {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(228, 232, 239, 0.9);
    padding: 0.8rem 0;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;

    min-width: 0;

    color: var(--ink) !important;
    font-size: 1.05rem;
    font-weight: 800;

    gap: 0.65rem;
    text-decoration: none;
}

.navbar-brand span:last-child,
.footer-brand span:last-child {
    overflow-wrap: anywhere;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    background: var(--ink);
    border-radius: 8px;

    color: #ffffff;
}

.nav-link {
    color: var(--body) !important;
    font-size: 0.95rem;
    font-weight: 700;

    padding: 0.75rem 0.9rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

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

    gap: 0.5rem;
    padding: 0.72rem 1rem;
}

.navbar-toggler {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    border-radius: 8px;
    font-weight: 800;
    white-space: normal;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);

    box-shadow:
        0 10px 22px rgba(31, 94, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    border-color: rgba(31, 94, 255, 0.35);
    color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.btn-light {
    color: var(--ink);
}


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

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 74vh;

    padding: 92px 0 78px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(10, 16, 28, 0.88) 0%,
            rgba(10, 16, 28, 0.74) 48%,
            rgba(15, 143, 122, 0.28) 100%
        ),
        url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=1800&q=80");

    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.hero::after {
    position: absolute;
    inset: 0;

    content: "";

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    opacity: 0.16;

    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

    gap: 0.5rem;
    margin-bottom: 1.1rem;

    color: var(--accent-soft);

    font-size: 0.82rem;
    font-weight: 900;

    text-transform: uppercase;
}

.eyebrow::before {
    display: block;

    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    content: "";

    background: var(--accent-soft);
    border-radius: 999px;
}

.hero h1 {
    max-width: 900px;

    margin-bottom: 1.4rem;

    font-size: 5.2rem;
    font-weight: 900;
    line-height: 1;
}

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

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.22rem;
}

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

    gap: 0.8rem;
    margin-top: 2rem;
}

.hero-proof {
    display: grid;

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

    max-width: 760px;

    gap: 1.1rem;
    margin-top: 3.5rem;
    padding-top: 1.6rem;

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

.proof-number {
    display: block;

    color: #ffffff;

    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.1;
}

.proof-label {
    display: block;

    margin-top: 0.25rem;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.9rem;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section-block {
    padding: 86px 0;
}

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

.section-header {
    max-width: 720px;
    margin-bottom: 2.7rem;
}

.section-header.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-kicker {
    margin-bottom: 0.5rem;

    color: var(--accent);

    font-size: 0.8rem;
    font-weight: 900;

    text-transform: uppercase;
}

.section-title {
    margin-bottom: 0.75rem;

    color: var(--ink);

    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.08;
}

.section-copy {
    margin-bottom: 0;

    color: var(--body);

    font-size: 1.04rem;
}


/* =========================================================
   CARDS
   ========================================================= */

.service-card,
.project-card,
.testimonial-card,
.process-card,
.form-shell,
.contact-card,
.detail-panel {
    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 8px;

    box-shadow: var(--shadow-sm);
}

.service-card,
.project-card {
    height: 100%;

    overflow: hidden;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.service-card:hover,
.project-card:hover {
    border-color: rgba(31, 94, 255, 0.24);

    box-shadow: var(--shadow-md);

    transform: translateY(-4px);
}

.service-card .card-body {
    padding: 1.6rem;
}

.service-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 1.25rem;

    background: var(--accent-soft);
    border-radius: 8px;

    color: var(--accent);

    font-size: 1.35rem;
}

.service-card h5,
.project-card h5 {
    color: var(--ink);
    font-weight: 900;
}

.project-card .card-img-top {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.project-card .card-body {
    display: flex;
    flex-direction: column;

    padding: 1.35rem;
}

.project-card .card-text {
    min-height: 4.8rem;
}

.project-card .btn {
    margin-top: auto;
}

.project-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    aspect-ratio: 4 / 3;

    background:
        linear-gradient(
            135deg,
            rgba(31, 94, 255, 0.12),
            rgba(15, 143, 122, 0.16)
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #eef8f6
        );

    color: var(--body);

    font-size: 2rem;
}

.app-thumb {
    color: var(--primary);
    font-size: 2.4rem;
}

.card-meta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 0.55rem;
}

.category-badge {
    display: inline-flex;

    width: fit-content;

    margin-bottom: 0.9rem;

    padding: 0.35rem 0.72rem;

    background: var(--accent-soft);
    border-radius: 999px;

    color: #087163;

    font-size: 0.72rem;
    font-weight: 900;
}

.status-pill {
    display: inline-flex;

    padding: 0.35rem 0.72rem;

    background: #f8f3e8;

    border: 1px solid #ead9b9;
    border-radius: 999px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 900;

    white-space: nowrap;
}

.tech-tag {
    display: inline-flex;

    margin-right: 0.4rem;
    margin-bottom: 0.5rem;

    padding: 0.32rem 0.64rem;

    background: #edf2ff;

    border: 1px solid #dbe5ff;
    border-radius: 999px;

    color: #24408f;

    font-size: 0.78rem;
    font-weight: 800;
}

.text-muted {
    color: var(--body) !important;
}


/* =========================================================
   WORK STRIP
   ========================================================= */

.work-strip {
    padding: 28px 0;

    background: var(--ink);

    color: #ffffff;
}

.work-strip .row > div {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.work-strip .row > div:last-child {
    border-right: 0;
}

.strip-label {
    color: rgba(255, 255, 255, 0.62);

    font-size: 0.83rem;
    font-weight: 800;

    text-transform: uppercase;
}

.strip-value {
    display: block;

    font-size: 1.4rem;
    font-weight: 900;
}


/* =========================================================
   TESTIMONIALS / PROCESS
   ========================================================= */

.testimonial-card,
.process-card {
    height: 100%;
    padding: 1.6rem;
}

.testimonial-card p {
    color: var(--ink-soft);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 1.2rem;

    background: #edf2ff;
    border-radius: 8px;

    color: var(--primary);

    font-size: 1.3rem;
}

.process-card h5 {
    font-weight: 900;
}

.process-card p {
    margin-bottom: 0;

    color: var(--body);
}

.avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: var(--ink);
    border-radius: 50%;

    color: #ffffff;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding: 82px 0;

    background:
        linear-gradient(
            90deg,
            rgba(17, 24, 39, 0.96),
            rgba(15, 143, 122, 0.9)
        ),
        url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80");

    background-position: center;
    background-size: cover;

    color: #ffffff;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.page-header {
    padding: 88px 0;

    background:
        linear-gradient(
            90deg,
            rgba(17, 24, 39, 0.93),
            rgba(31, 94, 255, 0.58)
        ),
        url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=1800&q=80");

    background-position: center;
    background-size: cover;

    color: #ffffff;
}

.page-header h1 {
    margin-bottom: 1rem;

    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.05;
}

.page-header p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1.1rem;
}


/* =========================================================
   FILTER / PAGINATION
   ========================================================= */

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 0.65rem;

    margin-bottom: 2.5rem;
}

.filter-bar .btn {
    padding: 0.65rem 1rem;

    box-shadow: none;
}

.pagination .page-link {
    border-color: var(--border);

    color: var(--primary);

    font-weight: 800;
}

.pagination .active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb a {
    color: var(--primary);

    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   PROJECT DETAILS
   ========================================================= */

.project-hero-image {
    width: 100%;

    aspect-ratio: 16 / 9;

    border-radius: 8px;

    box-shadow: var(--shadow-md);

    object-fit: cover;
}

.project-thumb-placeholder.project-hero-image {
    font-size: 3rem;
}

.detail-panel {
    padding: 1.4rem;
}

.detail-panel h5 {
    font-weight: 900;
}

.detail-item {
    padding: 0.9rem 0;

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

.detail-item:first-of-type {
    padding-top: 0;
}

.detail-item:last-of-type {
    border-bottom: 0;
}

.detail-label {
    display: block;

    margin-bottom: 0.15rem;

    color: var(--muted);

    font-size: 0.78rem;
    font-weight: 900;

    text-transform: uppercase;
}

.gallery-image {
    width: 100%;

    border-radius: 8px;

    box-shadow: var(--shadow-sm);

    object-fit: cover;
}


/* =========================================================
   FORMS
   ========================================================= */

.form-shell {
    padding: 2.4rem;
}

.form-label {
    color: var(--ink);

    font-size: 0.9rem;
    font-weight: 800;
}

.form-control {
    min-height: 48px;

    border: 1px solid var(--border);
    border-radius: 8px;
}

.form-control:focus {
    border-color: rgba(31, 94, 255, 0.55);

    box-shadow:
        0 0 0 0.22rem rgba(31, 94, 255, 0.12);
}

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

.contact-card {
    padding: 1.25rem;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-bottom: 1rem;

    background: var(--surface-tint);
    border-radius: 8px;

    color: var(--accent);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 62px 0 28px;

    background: #0d1320;

    color: #ffffff;
}

.site-footer h5 {
    margin-bottom: 1rem;

    font-size: 0.95rem;
    font-weight: 900;
}

.footer-copy,
.footer-list,
.footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.footer-copy {
    max-width: 360px;

    margin: 1rem 0 1.2rem;
}

.footer-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-list li {
    margin-bottom: 0.58rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.68);

    overflow-wrap: anywhere;

    text-decoration: none;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-contact i {
    width: 18px;

    margin-right: 0.55rem;

    color: var(--accent-soft);
}

.social-links {
    display: flex;

    gap: 0.65rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);

    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 0.8rem;

    margin-top: 2.5rem;
    padding-top: 1.25rem;

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


/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
   ========================================================= */

@media (max-width: 1199.98px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero h1 {
        font-size: 4.3rem;
    }

    .page-header h1 {
        font-size: 3.7rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 991.98px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-collapse {
        margin-top: 0.85rem;

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

    .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nav-cta {
        width: 100%;

        justify-content: center;

        margin-top: 0.65rem;
    }

    .navbar-nav {
        padding-top: 0.8rem;
    }

    .hero {
        min-height: auto;

        padding: 75px 0 65px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 3.1rem;
    }

    .work-strip .row > div {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .section-soft .d-flex > .btn {
        max-width: 100%;
    }
}


/* =========================================================
   PHONES
   ========================================================= */

@media (max-width: 767.98px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;

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


    /* -------------------------
       NAVBAR
       ------------------------- */

    .navbar {
        padding: 0.65rem 0;
    }

    .navbar-brand {
        max-width: 78%;

        font-size: 0.98rem;

        gap: 0.5rem;
    }

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

        flex: 0 0 34px;
    }

    .navbar-toggler {
        padding: 0.45rem 0.6rem;
    }


    /* -------------------------
       HERO
       ------------------------- */

    .hero {
        min-height: auto;

        padding: 58px 0 50px;

        background-position: center;
    }

    .eyebrow {
        margin-bottom: 0.9rem;

        font-size: 0.72rem;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 1rem;

        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.05;

        overflow-wrap: break-word;
    }

    .hero .lead {
        max-width: 100%;

        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;

        gap: 0.6rem;

        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 auto;

        min-width: 140px;
    }


    /* -------------------------
       HERO STATISTICS
       ------------------------- */

    .hero-proof {
        display: grid;

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

        width: 100%;

        gap: 0.6rem;

        margin-top: 2.3rem;
        padding-top: 1.2rem;
    }

    .proof-number {
        font-size: 1.25rem;
    }

    .proof-label {
        font-size: 0.7rem;

        line-height: 1.35;
    }


    /* -------------------------
       SECTIONS
       ------------------------- */

    .section-block {
        padding: 55px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .section-copy {
        font-size: 1rem;
        line-height: 1.6;
    }


    /* -------------------------
       CARDS
       ------------------------- */

    .service-card,
    .project-card,
    .testimonial-card,
    .process-card,
    .contact-card,
    .detail-panel {
        width: 100%;
        max-width: 100%;
    }

    .service-card .card-body,
    .project-card .card-body {
        padding: 1.25rem;
    }

    .project-card .card-text {
        min-height: 0;
    }

    .project-card .card-img-top,
    .project-thumb-placeholder {
        aspect-ratio: 4 / 3;
    }

    .card-meta-row {
        justify-content: flex-start;
    }


    /* -------------------------
       PAGE HEADER
       ------------------------- */

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .page-header p {
        font-size: 1rem;
        line-height: 1.6;
    }


    /* -------------------------
       BUTTONS
       ------------------------- */

    .btn {
        min-height: 44px;

        padding: 0.65rem 0.9rem;

        font-size: 0.92rem;
    }


    /* -------------------------
       FILTER
       ------------------------- */

    .filter-bar {
        display: flex;

        justify-content: flex-start;

        gap: 0.5rem;

        overflow-x: auto;

        padding-bottom: 0.35rem;

        scrollbar-width: none;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-bar .btn {
        flex: 0 0 auto;

        width: auto;

        white-space: nowrap;
    }


    /* -------------------------
       PROJECT IMAGES
       ------------------------- */

    .project-hero-image {
        width: 100%;

        aspect-ratio: 16 / 10;
    }

    .gallery-image {
        width: 100%;
        height: auto;
    }


    /* -------------------------
       FORMS
       ------------------------- */

    .form-shell {
        padding: 1.25rem;
    }

    .form-control {
        width: 100%;

        font-size: 16px;
    }

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


    /* -------------------------
       WORK STRIP
       ------------------------- */

    .work-strip {
        padding: 25px 0;
    }

    .work-strip .row > div {
        border-right: 1px solid rgba(255, 255, 255, 0.14);

        padding-bottom: 0;
    }

    .strip-value {
        font-size: 1.15rem;
    }

    .strip-label {
        font-size: 0.68rem;
    }


    /* -------------------------
       CTA
       ------------------------- */

    .cta-section {
        padding: 58px 0;
    }

    .cta-section .btn {
        max-width: 100%;
    }


    /* -------------------------
       FOOTER
       ------------------------- */

    .site-footer {
        padding: 48px 0 25px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;
    }


    /* -------------------------
       PREVENT OVERFLOW
       ------------------------- */

    a,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    span,
    div {
        overflow-wrap: break-word;
    }

    .status-pill,
    .category-badge,
    .tech-tag {
        max-width: 100%;

        overflow-wrap: anywhere;

        white-space: normal;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .container {
        padding-left: 13px;
        padding-right: 13px;
    }

    .navbar-brand {
        font-size: 0.92rem;
    }

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

        flex-basis: 32px;
    }

    .hero {
        padding: 50px 0 45px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

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

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

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

    .hero-proof {
        gap: 0.35rem;
    }

    .proof-number {
        font-size: 1.05rem;
    }

    .proof-label {
        font-size: 0.65rem;
    }

    .section-block {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .service-card .card-body,
    .project-card .card-body {
        padding: 1.1rem;
    }

    .form-shell {
        padding: 1rem;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 375px) {

    .container {
        padding-left: 11px;
        padding-right: 11px;
    }

    .navbar-brand {
        font-size: 0.86rem;
    }

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

        flex-basis: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-proof {
        gap: 0.25rem;
    }

    .proof-number {
        font-size: 0.95rem;
    }

    .proof-label {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
