/* =========================================================
   GAURAV KESWANI & ASSOCIATES
   FINAL PREMIUM WEBSITE STYLES
   ========================================================= */


/* =========================================================
   BRAND VARIABLES
   ========================================================= */

   :root {

    --navy: #10233f;
    --navy-deep: #0b1a2f;
    --navy-dark: #071526;
    --navy-soft: #173452;

    --maroon: #8b2d27;
    --maroon-dark: #74231f;
    --maroon-pale: #f7eceb;

    --gold: #d3a85a;
    --gold-light: #e2c382;
    --gold-pale: #faf4e8;

    --white: #ffffff;

    --light-blue: #eaf1f7;
    --light-blue-soft: #f4f7fa;

    --ivory: #fbfaf7;

    --text-main: #10233f;
    --text-soft: #556474;

    --grey-border: #dce3ea;

    --shadow-soft:
        0 10px 30px rgba(16, 35, 63, 0.07);

    --shadow-hover:
        0 18px 42px rgba(16, 35, 63, 0.13);
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text-main);

    background: var(--white);

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;

    max-width: 100%;
}

a {
    color: inherit;

    text-decoration: none;

    -webkit-tap-highlight-color:
        transparent;
}

button {
    font: inherit;
}

section {
    scroll-margin-top: 88px;
}

.section-container {
    width: 100%;
    max-width: 1160px;

    margin: 0 auto;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        3px solid rgba(211, 168, 90, 0.55);

    outline-offset: 4px;
}


/* =========================================================
   COMMON SECTION HEADINGS
   ========================================================= */

.section-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: var(--maroon);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.3px;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 2px;

    flex-shrink: 0;

    background: var(--maroon);
}

.section-heading h2,
.section-heading-center h2,
.business-heading h2 {
    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
    font-weight: 500;

    line-height: 1.18;
}

.section-heading-center {
    max-width: 820px;

    margin:
        0 auto 44px;

    text-align: center;
}

.section-heading-center .section-label {
    justify-content: center;
}

.section-heading-center > p:last-child {
    max-width: 750px;

    margin:
        16px auto 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid rgba(16, 35, 63, 0.08);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 4px 18px rgba(16, 35, 63, 0.04);
}

.nav-container {
    width: 100%;
    max-width: 1260px;

    min-height: 84px;

    margin: 0 auto;

    padding:
        0 4.5%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* =========================================================
   HEADER LOGO
   ========================================================= */

.brand {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}

.brand-logo {
    width: 225px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 26px;
}

.desktop-nav a {
    position: relative;

    padding:
        31px 0;

    color: #34475d;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 21px;

    width: 0;
    height: 2px;

    background:
        var(--maroon);

    transform:
        translateX(-50%);

    transition:
        width 0.22s ease;
}

.desktop-nav a:hover {
    color:
        var(--navy);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    background:
        transparent;

    border:
        1px solid #d3dce5;

    border-radius: 7px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background:
        var(--navy);

    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

.mobile-nav {
    display: none;

    flex-direction: column;

    padding:
        8px 7% 18px;

    background:
        var(--white);

    border-top:
        1px solid #edf0f3;

    box-shadow:
        0 12px 24px rgba(16, 35, 63, 0.07);
}

.mobile-nav a {
    padding:
        12px 0;

    color:
        var(--navy);

    border-bottom:
        1px solid #edf0f3;

    font-size: 15px;
    font-weight: 600;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav.active {
    display: flex;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 660px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(139, 45, 39, 0.08),
            transparent 25%
        ),
        linear-gradient(
            120deg,
            #fbfcfd 0%,
            #fbfcfd 54%,
            #eaf1f7 54%,
            #e3edf5 100%
        );
}


/* subtle maroon arc */

.hero::before {
    content: "";

    position: absolute;

    right: -200px;
    top: -270px;

    width: 760px;
    height: 760px;

    border:
        2px solid rgba(139, 45, 39, 0.12);

    border-radius:
        50%;

    pointer-events: none;
}


/* bottom navy curve */

.hero::after {
    content: "";

    position: absolute;

    left: -8%;
    bottom: -148px;

    width: 116%;
    height: 185px;

    background:
        linear-gradient(
            90deg,
            var(--navy-dark),
            var(--navy)
        );

    border-radius:
        50% 50% 0 0;

    transform:
        rotate(-1deg);

    pointer-events: none;
}

.hero-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1260px;

    margin: 0 auto;

    padding:
        70px 5% 112px;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items: center;

    gap: 62px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 680px;
}

.hero-eyebrow {
    margin-bottom: 17px;

    color:
        var(--maroon);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.6px;

    animation:
        fadeUp 0.7s ease both;
}

.hero h1 {
    color:
        var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 57px;
    font-weight: 500;

    line-height: 1.04;

    letter-spacing:
        -1px;

    animation:
        fadeUp 0.75s ease 0.07s both;
}

.hero h1 span {
    color:
        var(--maroon);
}

.hero-profession {
    display: inline-block;

    margin-top: 17px;

    padding:
        8px 13px;

    color:
        var(--navy);

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid #d8e0e8;

    border-left:
        3px solid var(--maroon);

    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    animation:
        fadeUp 0.75s ease 0.13s both;
}

.hero h2 {
    max-width: 620px;

    margin-top: 26px;

    color:
        var(--navy);

    font-size: 28px;
    font-weight: 650;

    line-height: 1.3;

    animation:
        fadeUp 0.75s ease 0.18s both;
}

.hero h2 span {
    color:
        var(--maroon);
}

.hero-description {
    max-width: 650px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: 17px;

    line-height: 1.7;

    animation:
        fadeUp 0.75s ease 0.24s both;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;

    animation:
        fadeUp 0.75s ease 0.3s both;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding:
        13px 24px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.2px;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.button:hover {
    transform:
        translateY(-2px);
}

.button-primary {
    color:
        var(--white);

    background:
        var(--navy);

    border:
        1px solid var(--navy);

    box-shadow:
        0 9px 20px rgba(16, 35, 63, 0.14);
}

.button-primary:hover {
    background:
        var(--maroon);

    border-color:
        var(--maroon);

    box-shadow:
        0 11px 24px rgba(139, 45, 39, 0.18);
}

.button-secondary {
    color:
        var(--navy);

    background:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid #b9c6d2;
}

.button-secondary:hover {
    background:
        var(--white);

    border-color:
        var(--maroon);
}


/* =========================================================
   HERO TRUST ITEMS
   ========================================================= */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 29px;

    animation:
        fadeUp 0.75s ease 0.36s both;
}

.trust-item {
    min-width: 135px;

    padding:
        11px 13px;

    background:
        rgba(255, 255, 255, 0.7);

    border:
        1px solid rgba(16, 35, 63, 0.1);

    border-radius: 6px;

    backdrop-filter:
        blur(4px);
}

.trust-item strong {
    display: block;

    margin-bottom: 2px;

    color:
        var(--maroon);

    font-size: 14px;
}

.trust-item span {
    color:
        var(--text-soft);

    font-size: 11px;

    line-height: 1.35;
}


/* =========================================================
   HERO CORPORATE VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    width: 100%;
    min-height: 510px;

    display: flex;

    align-items: center;
    justify-content: center;

    animation:
        visualIn 0.85s ease 0.15s both;
}


/* outer logo shell */

.hero-mark-shell {
    position: relative;

    z-index: 3;

    width: 315px;
    height: 315px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(16, 35, 63, 0.14);

    border-radius:
        28px;

    background:
        rgba(255, 255, 255, 0.72);

    box-shadow:
        0 24px 55px rgba(16, 35, 63, 0.15);

    transform:
        rotate(-3deg);

    animation:
        logoFloat 5s ease-in-out infinite;
}

.hero-mark-shell::before {
    content: "";

    position: absolute;

    inset: 14px;

    border:
        1px solid rgba(211, 168, 90, 0.35);

    border-radius:
        22px;

    pointer-events: none;
}


/* crop the left emblem from full horizontal logo */

.hero-mark {
    position: relative;

    z-index: 2;

    width: 225px;
    height: 225px;

    overflow: hidden;

    border-radius: 14px;

    box-shadow:
        0 12px 28px rgba(16, 35, 63, 0.16);
}

.hero-mark img {
    width: auto;
    max-width: none;

    height: 100%;

    object-fit: cover;

    object-position: left center;
}


/* =========================================================
   HERO FLOATING SERVICE CARDS
   ========================================================= */

.hero-service {
    position: absolute;

    z-index: 5;

    min-width: 175px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        12px 14px;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid rgba(16, 35, 63, 0.12);

    border-left:
        3px solid var(--maroon);

    border-radius: 7px;

    box-shadow:
        0 12px 28px rgba(16, 35, 63, 0.11);

    backdrop-filter:
        blur(6px);
}

.hero-service span {
    color:
        var(--navy);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;
}

.hero-service-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--maroon);

    background:
        var(--maroon-pale);

    border-radius: 7px;
}

.hero-service-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-service-one {
    top: 58px;
    left: 2px;

    animation:
        smallFloat 4.5s ease-in-out infinite;
}

.hero-service-two {
    top: 190px;
    right: -4px;

    animation:
        smallFloat 5s ease-in-out 0.65s infinite;
}

.hero-service-three {
    left: 22px;
    bottom: 48px;

    animation:
        smallFloat 4.8s ease-in-out 0.3s infinite;
}


/* =========================================================
   HERO CORPORATE RINGS
   ========================================================= */

.corporate-ring {
    position: absolute;

    border:
        1px solid rgba(16, 35, 63, 0.12);

    border-radius: 50%;

    pointer-events: none;
}

.ring-one {
    width: 370px;
    height: 370px;
}

.ring-two {
    width: 410px;
    height: 410px;

    border-color:
        rgba(139, 45, 39, 0.12);
}

.ring-three {
    width: 450px;
    height: 450px;

    border-style:
        dashed;

    border-color:
        rgba(211, 168, 90, 0.22);

    animation:
        slowRotate 28s linear infinite;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    position: relative;

    padding:
        84px 6%;

    overflow: hidden;

    background:
        var(--white);
}

.about::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -170px;

    width: 370px;
    height: 370px;

    border-radius:
        50%;

    background:
        rgba(234, 241, 247, 0.65);

    pointer-events: none;
}

.about-grid {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        0.76fr 1.24fr;

    align-items: center;

    gap: 70px;
}

.about-content {
    max-width: 740px;
}

.about-content > p {
    margin-bottom: 17px;

    color:
        var(--text-soft);

    font-size: 17px;

    line-height: 1.75;
}

.about-content .about-lead {
    color:
        var(--navy);

    font-size: 21px;
    font-weight: 650;

    line-height: 1.5;
}


/* =========================================================
   ABOUT HIGHLIGHTS
   ========================================================= */

.about-highlights {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin-top: 28px;
}

.about-highlight {
    padding:
        17px 14px;

    background:
        linear-gradient(
            145deg,
            #fbfcfd,
            var(--white)
        );

    border:
        1px solid #e1e7ed;

    border-top:
        3px solid var(--maroon);

    border-radius: 6px;

    box-shadow:
        var(--shadow-soft);
}

.about-highlight strong {
    display: block;

    margin-bottom: 5px;

    color:
        var(--maroon);

    font-size: 16px;

    line-height: 1.3;
}

.about-highlight span {
    color:
        var(--text-soft);

    font-size: 11px;

    line-height: 1.35;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    position: relative;

    padding:
        86px 6% 92px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f4f7fa 0%,
            #eef3f7 100%
        );

    border-top:
        1px solid #e1e7ed;

    border-bottom:
        1px solid #e1e7ed;
}

.services::before {
    content: "";

    position: absolute;

    left: -160px;
    top: -190px;

    width: 430px;
    height: 430px;

    border:
        1px solid rgba(139, 45, 39, 0.09);

    border-radius: 50%;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
    position: relative;

    min-height: 235px;

    padding:
        27px 27px 29px;

    overflow: hidden;

    background:
        var(--white);

    border:
        1px solid var(--grey-border);

    border-radius: 9px;

    box-shadow:
        var(--shadow-soft);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--maroon),
            var(--maroon) 74%,
            var(--gold)
        );

    opacity: 0.7;

    transition:
        width 0.25s ease,
        opacity 0.25s ease;
}

.service-card::after {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -80px;

    width: 160px;
    height: 160px;

    border-radius:
        50%;

    background:
        rgba(234, 241, 247, 0.6);

    transition:
        transform 0.3s ease;
}

.service-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #c9d3dc;

    box-shadow:
        var(--shadow-hover);
}

.service-card:hover::before {
    width: 5px;

    opacity: 1;
}

.service-card:hover::after {
    transform:
        scale(1.15);
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.service-icon {
    position: relative;

    z-index: 1;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    color:
        var(--maroon);

    background:
        var(--maroon-pale);

    border:
        1px solid #ead5d3;

    border-radius: 8px;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.service-icon svg {
    width: 24px;
    height: 24px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon {
    color:
        var(--white);

    background:
        var(--maroon);

    transform:
        translateY(-2px);
}

.service-category {
    position: relative;

    z-index: 1;

    margin-bottom: 7px;

    color:
        var(--maroon);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.service-card h3 {
    position: relative;

    z-index: 1;

    max-width: 470px;

    margin-bottom: 12px;

    color:
        var(--navy);

    font-size: 20px;
    font-weight: 700;

    line-height: 1.35;
}

.service-card > p:last-child {
    position: relative;

    z-index: 1;

    max-width: 490px;

    color:
        var(--text-soft);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   BUSINESS LIFECYCLE / DARK SECTION
   ========================================================= */

.journey {
    position: relative;

    padding:
        90px 6%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(211, 168, 90, 0.08),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark) 0%,
            var(--navy) 100%
        );
}

.journey::after {
    content: "";

    position: absolute;

    right: -210px;
    top: -220px;

    width: 560px;
    height: 560px;

    border:
        1px solid rgba(211, 168, 90, 0.14);

    border-radius:
        50%;

    pointer-events: none;
}

.journey-grid {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        0.78fr 1.22fr;

    align-items: start;

    gap: 70px;
}

.section-label-light {
    color:
        var(--gold-light);
}

.section-label-light::before {
    background:
        var(--gold-light);
}

.journey-intro {
    position: sticky;

    top: 125px;
}

.journey-intro h2 {
    color:
        var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 45px;
    font-weight: 500;

    line-height: 1.12;
}

.journey-intro h2 span {
    display: block;

    margin-top: 7px;

    color:
        var(--gold-light);
}

.journey-intro > p:last-child {
    margin-top: 21px;

    color:
        #c3ceda;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   JOURNEY CARDS
   ========================================================= */

.journey-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.journey-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    min-height: 170px;

    padding:
        22px 20px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 8px;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.journey-item:hover {
    transform:
        translateY(-3px);

    background:
        rgba(255, 255, 255, 0.085);

    border-color:
        rgba(211, 168, 90, 0.3);
}

.journey-item > strong {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--navy);

    background:
        linear-gradient(
            145deg,
            var(--gold-light),
            var(--gold)
        );

    border-radius:
        50%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
}

.journey-item h3 {
    margin-bottom: 7px;

    color:
        var(--white);

    font-size: 18px;
}

.journey-item p {
    color:
        #b9c5d2;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   BUSINESSES WE SERVE
   ========================================================= */

.businesses {
    position: relative;

    padding:
        84px 6% 90px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            var(--light-blue)
        );
}

.businesses::after {
    content: "";

    position: absolute;

    right: -120px;
    top: -160px;

    width: 390px;
    height: 390px;

    border:
        1px solid rgba(139, 45, 39, 0.08);

    border-radius:
        50%;

    pointer-events: none;
}

.business-heading {
    position: relative;

    z-index: 1;

    max-width: 800px;

    margin-bottom: 38px;
}

.business-heading > p:last-child {
    max-width: 700px;

    margin-top: 15px;

    color:
        var(--text-soft);

    font-size: 16px;

    line-height: 1.7;
}

.business-types {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.business-type {
    min-height: 175px;

    padding:
        24px 20px;

    background:
        rgba(255, 255, 255, 0.94);

    border:
        1px solid #d5e0e9;

    border-top:
        3px solid var(--maroon);

    border-radius: 7px;

    box-shadow:
        0 7px 20px rgba(16, 35, 63, 0.05);

    transition:
        transform 0.23s ease,
        box-shadow 0.23s ease,
        border-color 0.23s ease;
}

.business-type:hover {
    transform:
        translateY(-4px);

    border-color:
        #c0ccd7;

    box-shadow:
        var(--shadow-hover);
}

.business-type span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 28px;

    margin-bottom: 20px;

    padding:
        0 8px;

    color:
        var(--maroon);

    background:
        var(--maroon-pale);

    border-radius: 4px;

    font-size: 12px;
    font-weight: 800;
}

.business-type h3 {
    color:
        var(--navy);

    font-size: 19px;

    line-height: 1.35;
}


/* =========================================================
   CLIENTS
   ========================================================= */

.clients {
    position: relative;

    padding:
        82px 6% 88px;

    overflow: hidden;

    background:
        var(--white);
}

.clients::before {
    content: "";

    position: absolute;

    top: 0;
    right: 8%;

    width: 120px;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--maroon)
        );
}

.clients-heading {
    margin-bottom: 36px;
}

.clients-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.client-logo {
    min-height: 135px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fafc
        );

    border:
        1px solid var(--grey-border);

    border-radius: 7px;

    box-shadow:
        0 6px 18px rgba(16, 35, 63, 0.045);

    transition:
        transform 0.23s ease,
        box-shadow 0.23s ease,
        border-color 0.23s ease;
}

.client-logo:hover {
    transform:
        translateY(-4px);

    border-color:
        #c7d1dc;

    box-shadow:
        var(--shadow-hover);
}

.client-logo img {
    max-width: 100%;

    max-height: 72px;

    object-fit: contain;

    transition:
        transform 0.23s ease;
}

.client-logo:hover img {
    transform:
        scale(1.035);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    position: relative;

    padding:
        88px 6% 92px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(211, 168, 90, 0.08),
            transparent 24%
        ),
        linear-gradient(
            130deg,
            var(--navy) 0%,
            var(--navy-dark) 100%
        );
}

.contact::before {
    content: "";

    position: absolute;

    left: -150px;
    bottom: -220px;

    width: 500px;
    height: 500px;

    border:
        1px solid rgba(211, 168, 90, 0.14);

    border-radius:
        50%;
}

.contact::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--gold) 0%,
            var(--gold) 8%,
            var(--maroon) 8%,
            var(--maroon) 31%,
            rgba(255, 255, 255, 0.11) 31%
        );
}

.contact-container {
    position: relative;

    z-index: 1;

    max-width: 860px;

    text-align: center;
}

.contact-label {
    justify-content: center;

    color:
        var(--gold-light);
}

.contact-label::before {
    background:
        var(--gold-light);
}

.contact h2 {
    color:
        var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 47px;
    font-weight: 500;

    line-height: 1.12;
}

.contact h2 span {
    color:
        var(--gold-light);
}

.contact-text {
    max-width: 700px;

    margin:
        20px auto 31px;

    color:
        #cad3de;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT BUTTONS
   ========================================================= */

.contact-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.contact-primary {
    color:
        var(--white);

    background:
        var(--maroon);

    border:
        1px solid var(--maroon);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.14);
}

.contact-primary:hover {
    color:
        var(--maroon);

    background:
        var(--white);

    border-color:
        var(--white);
}

.contact-secondary {
    color:
        var(--white);

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.68);
}

.contact-secondary:hover {
    color:
        var(--navy);

    background:
        var(--white);

    border-color:
        var(--white);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 20px;

    color:
        #bbc6d2;

    font-size: 13px;
}

.contact-details a {
    transition:
        color 0.2s ease;
}

.contact-details a:hover {
    color:
        var(--white);
}

.contact-details span {
    color:
        var(--gold);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding:
        25px 6%;

    background:
        var(--navy-dark);

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.footer-content {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-brand {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.footer-brand strong {
    color:
        var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    letter-spacing: 1.2px;
}

.footer-brand span {
    color:
        var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.footer p {
    color:
        #9eabba;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.disclaimer-overlay {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        20px;

    background:
        rgba(4, 15, 28, 0.9);

    backdrop-filter:
        blur(5px);
}

.disclaimer-box {
    position: relative;

    width: 100%;
    max-width: 570px;

    padding:
        38px 38px 34px;

    overflow: hidden;

    background:
        var(--white);

    border-top:
        4px solid var(--maroon);

    border-radius:
        8px;

    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34);

    animation:
        disclaimerEnter 0.35s ease both;
}

.disclaimer-box::before {
    content: "";

    position: absolute;

    top: -4px;
    right: 0;

    width: 24%;
    height: 4px;

    background:
        var(--gold);
}

.disclaimer-box::after {
    content: "";

    position: absolute;

    right: -90px;
    bottom: -120px;

    width: 240px;
    height: 240px;

    border-radius:
        50%;

    background:
        rgba(234, 241, 247, 0.58);

    pointer-events: none;
}

.disclaimer-label {
    position: relative;

    z-index: 1;

    margin-bottom: 10px;

    color:
        var(--maroon);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.disclaimer-box h2 {
    position: relative;

    z-index: 1;

    margin-bottom: 18px;

    color:
        var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1.25;
}

.disclaimer-box p {
    position: relative;

    z-index: 1;

    margin-bottom: 15px;

    color:
        var(--text-soft);

    font-size: 15px;

    line-height: 1.65;
}

.disclaimer-actions {
    position: relative;

    z-index: 1;

    display: flex;

    gap: 12px;

    margin-top: 24px;
}

.disclaimer-actions button {
    flex: 1;

    min-height: 46px;

    padding:
        12px 17px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.disclaimer-actions button:hover {
    transform:
        translateY(-1px);
}

.disclaimer-agree {
    color:
        var(--white);

    background:
        var(--maroon);

    border:
        1px solid var(--maroon);
}

.disclaimer-agree:hover {
    background:
        var(--maroon-dark);

    border-color:
        var(--maroon-dark);
}

.disclaimer-exit {
    color:
        var(--navy);

    background:
        var(--white);

    border:
        1px solid var(--navy);
}

.disclaimer-exit:hover {
    color:
        var(--white);

    background:
        var(--navy);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;

        transform:
            translateY(16px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes visualIn {

    from {
        opacity: 0;

        transform:
            translateX(24px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }
}


@keyframes logoFloat {

    0%,
    100% {
        transform:
            rotate(-3deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-3deg)
            translateY(-7px);
    }
}


@keyframes smallFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-6px);
    }
}


@keyframes slowRotate {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }
}


@keyframes disclaimerEnter {

    from {
        opacity: 0;

        transform:
            translateY(12px)
            scale(0.985);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes sectionReveal {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

@supports (animation-timeline: view()) {

    .about .section-container,
    .services .section-container,
    .journey .section-container,
    .businesses .section-container,
    .clients .section-container,
    .contact .section-container {

        animation-name:
            sectionReveal;

        animation-duration:
            1ms;

        animation-fill-mode:
            both;

        animation-timeline:
            view();

        animation-range:
            entry 0%
            cover 24%;
    }
}


/* =========================================================
   SMALL DESKTOP / TABLET
   ========================================================= */

@media (max-width: 1080px) {

    .brand-logo {
        width:
            195px;
    }

    .desktop-nav {
        gap:
            17px;
    }

    .desktop-nav a {
        font-size:
            12px;
    }

    .hero-container {
        gap:
            38px;
    }

    .hero h1 {
        font-size:
            49px;
    }

    .hero-mark-shell {
        width:
            280px;

        height:
            280px;
    }

    .hero-mark {
        width:
            200px;

        height:
            200px;
    }

    .hero-service {
        min-width:
            160px;
    }

    .about-highlights {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .business-types {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .clients-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .journey-grid {
        grid-template-columns:
            1fr;

        gap:
            38px;
    }

    .journey-intro {
        position:
            static;

        max-width:
            700px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {


    section {
        scroll-margin-top:
            72px;
    }


    /* HEADER */

    .nav-container {
        min-height:
            69px;

        padding:
            0 6%;
    }

    .brand-logo {
        width:
            175px;
    }

    .desktop-nav {
        display:
            none;
    }

    .menu-toggle {
        display:
            block;
    }


    /* COMMON */

    .section-label {
        margin-bottom:
            11px;

        font-size:
            11px;

        letter-spacing:
            1.8px;
    }

    .section-label::before {
        width:
            22px;
    }

    .section-heading h2,
    .section-heading-center h2,
    .business-heading h2 {
        font-size:
            31px;
    }


    /* HERO */

    .hero {
        min-height:
            auto;

        background:
            linear-gradient(
                180deg,
                #fbfcfd 0%,
                #fbfcfd 57%,
                #eaf1f7 57%,
                #eaf1f7 100%
            );
    }

    .hero::before {
        display:
            none;
    }

    .hero::after {
        height:
            105px;

        bottom:
            -78px;
    }

    .hero-container {
        grid-template-columns:
            1fr;

        gap:
            38px;

        padding:
            47px 7% 92px;
    }

    .hero h1 {
        font-size:
            41px;

        line-height:
            1.07;
    }

    .hero-profession {
        margin-top:
            15px;

        font-size:
            11px;
    }

    .hero h2 {
        margin-top:
            22px;

        font-size:
            23px;

        line-height:
            1.35;
    }

    .hero-description {
        margin-top:
            17px;

        font-size:
            16px;

        line-height:
            1.65;
    }

    .hero-actions {
        flex-direction:
            column;

        margin-top:
            26px;
    }

    .hero-actions .button {
        width:
            100%;
    }

    .hero-trust {
        display:
            grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap:
            7px;

        margin-top:
            23px;
    }

    .trust-item {
        min-width:
            0;

        padding:
            9px 8px;
    }

    .trust-item strong {
        font-size:
            12px;
    }

    .trust-item span {
        font-size:
            9px;
    }


    /* HERO VISUAL */

    .hero-visual {
        min-height:
            440px;
    }

    .hero-mark-shell {
        width:
            250px;

        height:
            250px;
    }

    .hero-mark {
        width:
            178px;

        height:
            178px;
    }

    .ring-one {
        width:
            300px;

        height:
            300px;
    }

    .ring-two {
        width:
            330px;

        height:
            330px;
    }

    .ring-three {
        width:
            360px;

        height:
            360px;
    }

    .hero-service {
        min-width:
            145px;

        padding:
            10px 11px;
    }

    .hero-service span {
        font-size:
            11px;
    }

    .hero-service-icon {
        width:
            33px;

        height:
            33px;
    }

    .hero-service-icon svg {
        width:
            18px;

        height:
            18px;
    }

    .hero-service-one {
        top:
            26px;

        left:
            0;
    }

    .hero-service-two {
        top:
            176px;

        right:
            0;
    }

    .hero-service-three {
        left:
            4px;

        bottom:
            24px;
    }


    /* ABOUT */

    .about {
        padding:
            62px 7%;
    }

    .about-grid {
        grid-template-columns:
            1fr;

        gap:
            28px;
    }

    .about-content .about-lead {
        font-size:
            19px;
    }

    .about-content > p {
        font-size:
            16px;

        line-height:
            1.68;
    }

    .about-highlights {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            9px;

        margin-top:
            23px;
    }


    /* SERVICES */

    .services {
        padding:
            64px 7% 69px;
    }

    .section-heading-center {
        margin-bottom:
            32px;
    }

    .section-heading-center > p:last-child {
        font-size:
            16px;
    }

    .services-grid {
        grid-template-columns:
            1fr;

        gap:
            13px;
    }

    .service-card {
        min-height:
            auto;

        padding:
            23px 21px 24px;
    }

    .service-icon {
        width:
            43px;

        height:
            43px;

        margin-bottom:
            14px;
    }

    .service-card h3 {
        font-size:
            19px;
    }


    /* JOURNEY */

    .journey {
        padding:
            65px 7%;
    }

    .journey-grid {
        gap:
            32px;
    }

    .journey-intro h2 {
        font-size:
            36px;
    }

    .journey-intro > p:last-child {
        font-size:
            15px;
    }

    .journey-list {
        grid-template-columns:
            1fr;

        gap:
            10px;
    }

    .journey-item {
        min-height:
            auto;

        padding:
            17px 15px;
    }


    /* BUSINESSES */

    .businesses {
        padding:
            63px 7% 68px;
    }

    .business-heading {
        margin-bottom:
            30px;
    }

    .business-heading > p:last-child {
        font-size:
            15px;
    }

    .business-types {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            10px;
    }

    .business-type {
        min-height:
            145px;

        padding:
            20px 15px;
    }

    .business-type h3 {
        font-size:
            17px;
    }


    /* CLIENTS */

    .clients {
        padding:
            62px 7% 68px;
    }

    .clients-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            11px;
    }

    .client-logo {
        min-height:
            108px;

        padding:
            14px;
    }

    .client-logo img {
        max-height:
            58px;
    }


    /* CONTACT */

    .contact {
        padding:
            65px 7% 70px;
    }

    .contact h2 {
        font-size:
            37px;
    }

    .contact-text {
        margin:
            18px auto 27px;

        font-size:
            16px;
    }

    .contact-actions {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .contact-actions .button {
        width:
            100%;
    }

    .contact-details {
        margin-top:
            18px;

        font-size:
            12px;
    }


    /* FOOTER */

    .footer {
        padding:
            23px 7%;
    }

    .footer-content {
        flex-direction:
            column;

        text-align:
            center;

        gap:
            8px;
    }

    .footer-brand {
        align-items:
            center;
    }


    /* DISCLAIMER */

    .disclaimer-overlay {
        padding:
            15px;
    }

    .disclaimer-box {
        padding:
            27px 22px 23px;
    }

    .disclaimer-box h2 {
        font-size:
            26px;
    }

    .disclaimer-box p {
        font-size:
            14px;

        line-height:
            1.58;
    }

    .disclaimer-actions {
        flex-direction:
            column;

        gap:
            9px;
    }

    .disclaimer-actions button {
        width:
            100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .brand-logo {
        width:
            155px;
    }

    .hero h1 {
        font-size:
            36px;
    }

    .hero h2 {
        font-size:
            21px;
    }

    .hero-eyebrow {
        font-size:
            10px;

        letter-spacing:
            2px;
    }

    .hero-trust {
        grid-template-columns:
            1fr;
    }

    .trust-item {
        display:
            flex;

        align-items:
            center;

        gap:
            8px;
    }

    .trust-item strong {
        margin-bottom:
            0;
    }

    .hero-visual {
        min-height:
            410px;
    }

    .hero-mark-shell {
        width:
            225px;

        height:
            225px;
    }

    .hero-mark {
        width:
            160px;

        height:
            160px;
    }

    .hero-service {
        min-width:
            130px;

        padding:
            9px 9px;
    }

    .hero-service span {
        font-size:
            10px;
    }

    .about-highlights {
        grid-template-columns:
            1fr;
    }

    .business-types {
        grid-template-columns:
            1fr;
    }

    .business-type {
        min-height:
            auto;
    }

    .clients-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .contact h2 {
        font-size:
            33px;
    }

    .contact-details {
        flex-direction:
            column;

        gap:
            4px;
    }

    .contact-details span {
        display:
            none;
    }

    .footer-brand strong {
        font-size:
            13px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
/* =========================================================
   FINAL GKA TYPOGRAPHY & BUSINESS SECTION REFINEMENT
   ========================================================= */


/* =========================================================
   1. HERO - STRONG CORPORATE TYPOGRAPHY
   ========================================================= */

   .hero h1 {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 54px;
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: 0.3px;

    text-transform: uppercase;
}

.hero h1 span {
    color: var(--maroon);
}


/* Company Secretaries */

.hero-profession {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* Business Advisory, Regulatory Compliance & Audits */

.hero h2 {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 29px;
    font-weight: 700;

    line-height: 1.32;
}


/* =========================================================
   2. ALL MAIN SECTION HEADINGS
   CLEAN + BOLD LIKE EARLIER VERSION
   ========================================================= */

.section-heading h2,
.section-heading-center h2,
.business-heading h2,
.journey-intro h2,
.contact h2 {

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 800;

    letter-spacing: -0.4px;
}


/* ABOUT GKA MAIN HEADING */

.section-heading h2 {
    font-size: 44px;

    line-height: 1.18;
}


/* SERVICES / CENTERED HEADINGS */

.section-heading-center h2 {
    font-size: 42px;

    line-height: 1.2;
}


/* WHO WE SERVE */

.business-heading h2 {
    font-size: 42px;

    line-height: 1.2;
}


/* DARK BUSINESS LIFECYCLE SECTION */

.journey-intro h2 {
    font-size: 43px;

    line-height: 1.15;
}


/* CONTACT */

.contact h2 {
    font-size: 44px;

    line-height: 1.18;
}


/* =========================================================
   3. SECTION LABELS
   ABOUT GKA / WHAT WE DO / BUSINESSES WE SERVE ETC.
   ========================================================= */

.section-label {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}


/* slightly longer line like earlier design */

.section-label::before {
    width: 34px;

    height: 2px;
}


/* =========================================================
   4. SECTION SUPPORTING TEXT
   ========================================================= */

.section-heading-center > p:last-child,
.business-heading > p:last-child,
.about-content > p,
.journey-intro > p:last-child,
.contact-text {

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
}


/* ABOUT FIRST IMPORTANT LINE */

.about-content .about-lead {
    font-size: 21px;

    font-weight: 700;

    color: var(--navy);

    line-height: 1.5;
}


/* =========================================================
   5. BUSINESSES WE SERVE
   MATCH EARLIER SIMPLE DESIGN
   ========================================================= */

.businesses {
    padding:
        78px 6% 84px;

    background:
        linear-gradient(
            135deg,
            #e8f0f7 0%,
            #eaf1f7 58%,
            #edf4f9 100%
        );
}


/* remove additional descriptive paragraph
   so section matches earlier cleaner version */

.business-heading > p:last-child {
    display: none;
}


.business-heading {
    max-width: 100%;

    margin-bottom: 38px;
}


/* four equal simple boxes */

.business-types {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}


/* remove the 01 / 02 / 03 / 04 labels */

.business-type span {
    display: none;
}


.business-type {
    min-height: 116px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 22px 18px;

    text-align: center;

    background: rgba(255, 255, 255, 0.96);

    border:
        1px solid #ccd9e4;

    border-top:
        3px solid var(--maroon);

    border-radius: 7px;

    box-shadow:
        0 8px 20px rgba(16, 35, 63, 0.06);
}


.business-type h3 {
    margin: 0;

    color: var(--navy);

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 19px;

    font-weight: 650;

    line-height: 1.25;
}


/* =========================================================
   6. SERVICE CARD HEADINGS
   ========================================================= */

.service-card h3 {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 750;
}


/* =========================================================
   7. MOBILE TYPOGRAPHY
   ========================================================= */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 36px;

        line-height: 1.08;
    }

    .hero h2 {
        font-size: 22px;
    }

    .section-heading h2,
    .section-heading-center h2,
    .business-heading h2 {
        font-size: 31px;

        line-height: 1.22;
    }

    .journey-intro h2 {
        font-size: 34px;
    }

    .contact h2 {
        font-size: 35px;
    }


    /* keep business cards 2 per row on normal phones */

    .business-types {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 11px;
    }

    .business-type {
        min-height: 96px;

        padding: 18px 10px;
    }

    .business-type h3 {
        font-size: 16px;
    }
}


/* =========================================================
   8. SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .hero h1 {
        font-size: 32px;
    }

    .section-heading h2,
    .section-heading-center h2,
    .business-heading h2 {
        font-size: 29px;
    }

    .business-types {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}
/* =========================================================
   FINAL GKA MOBILE HERO FIX
   ========================================================= */

@media (max-width: 768px) {

    .hero-container {
        gap: 22px;
        padding:
            36px 6% 72px;
    }

    .hero-visual {
        min-height: 355px;
    }

    /* Main GKA mark */

    .hero-mark-shell {
        width: 205px;
        height: 205px;

        border-radius: 22px;

        transform: rotate(-2deg);
    }

    .hero-mark-shell::before {
        inset: 10px;

        border-radius: 17px;
    }

    .hero-mark {
        width: 145px;
        height: 145px;
    }


    /* Orbit rings */

    .ring-one {
        width: 255px;
        height: 255px;
    }

    .ring-two {
        width: 280px;
        height: 280px;
    }

    .ring-three {
        width: 305px;
        height: 305px;
    }


    /* Floating service cards */

    .hero-service {
        min-width: 0;
        max-width: 165px;

        padding:
            9px 10px;

        gap: 8px;
    }

    .hero-service span {
        font-size: 10.5px;
        line-height: 1.25;
    }

    .hero-service-icon {
        width: 31px;
        height: 31px;
    }

    .hero-service-icon svg {
        width: 17px;
        height: 17px;
    }


    /* Position cards around mark rather than across it */

    .hero-service-one {
        top: 8px;
        left: 0;
    }

    .hero-service-two {
        top: 125px;
        right: 0;
    }

    .hero-service-three {
        left: 0;
        bottom: 7px;
    }

}


/* Smaller phones */

@media (max-width: 430px) {

    .hero-visual {
        min-height: 325px;
    }

    .hero-mark-shell {
        width: 185px;
        height: 185px;
    }

    .hero-mark {
        width: 130px;
        height: 130px;
    }

    .ring-one {
        width: 225px;
        height: 225px;
    }

    .ring-two {
        width: 250px;
        height: 250px;
    }

    .ring-three {
        width: 275px;
        height: 275px;
    }

    .hero-service {
        max-width: 150px;
    }

    .hero-service-two {
        top: 112px;
    }

}