
        /* =====================================================
   VARIABLES
===================================================== */

:root {

    --blue: #133360;

    --black: #0b0d10;
    --black-2: #12161b;

    --white: #ffffff;

    --beige: #f3f0e9;
    --beige-2: #e9e4da;

    --text: #17191c;
    --muted: #666a70;
    --light-text: #b9bdc2;

    --border: #dedbd4;
    --dark-border: rgba(255,255,255,.12);

    --radius: 22px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--white);

    color: var(--text);

    font-family: 'Roboto',sans-serif;

    line-height: 1.7;

    overflow-x: hidden;
}


img {
    width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {

    width: min(1240px, calc(100% - 60px));

    margin: auto;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3 {

    font-family: 'Roboto',sans-serif;

    line-height: 1.05;

    letter-spacing: -.045em;

}


h1 span,
h2 span {
    color: var(--blue);
}


p {
    color: var(--muted);
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    min-height: 56px;

    padding: 0 25px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease;

}


.btn span {

    transition:
        transform .3s ease;

}


.btn:hover span {

    transform:
        translate(4px,-3px);

}


.btn-blue {

    background: var(--blue);

    color: white;

    box-shadow:
        0 12px 30px rgba(19,51,96,.16);

}


.btn-blue:hover {

    background: #0d274b;

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 40px rgba(19,51,96,.28);

}


.btn-white {

    color: var(--text);

    background: white;

    border: 1px solid rgba(255,255,255,.4);

}


.btn-white:hover {

    color: var(--blue);

    transform:
        translateY(-4px);

}


/* =====================================================
   HERO
===================================================== */
/*
.hero {

    min-height: 700px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero-image {

    position: absolute;

    inset: 0;

}


.hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation:
        heroZoom 12s ease-out forwards;
}


@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.65) 45%,
            rgba(0,0,0,.18) 100%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 820px;

    padding:
        140px 0 120px;
}


.eyebrow {

    display: inline-block;

    margin-bottom: 25px;

    color: white;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

}


.hero h1 {

    color: white;

    font-size:
        clamp(46px, 6vw, 65px);

    margin-bottom: 30px;

}


.hero h1 span {

    color: white;

    text-decoration:
        underline;

    text-decoration-color:
        var(--blue);

    text-decoration-thickness:
        7px;

    text-underline-offset:
        8px;

}


.hero-content > p {

    max-width: 720px;

    color:
        rgba(255,255,255,.76);

    font-size: 16px;

    margin-bottom: 15px;

}


.hero-content strong {
    color: white;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;

}


.hero-bottom {

    position: absolute;

    bottom: 30px;

    left: 0;

    width: 100%;

    z-index: 2;

}


.hero-scroll {

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .15em;

    display: flex;

    gap: 15px;

    align-items: center;

}


.hero-scroll span {

    color: white;

    font-size: 18px;

}
/*

/* =====================================================
   SECTION META
===================================================== */

.section-meta {

    display: grid;

    grid-template-columns:
        40px 1fr auto;

    align-items: center;

    gap: 20px;

    margin-bottom: 80px;

}


.section-meta span {

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;

}


.section-meta div {

    height: 1px;

    background: var(--border);

}


.section-meta strong {

    color: #777;

    font-size: 10px;

    letter-spacing: .16em;

}


/* =====================================================
   SECTIONS
===================================================== */

.section-white {
    padding: 50px 0px;
    background: white;

}
.section-beige .small-heading{
   color: #0d274b !important;
}

.section-beige {
    padding: 50px 0px;
    background: var(--beige);

}


.intro,
.services,
.bespoke,
.wordpress,
.commerce {

    padding:
        1px 0;

}


/* =====================================================
   INTRO
===================================================== */

.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

}


.small-heading {

    display: block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

    margin-bottom: 20px;

}


.intro h2 {

    font-size:
        clamp(32px, 5vw, 56px);

}


.intro-text {

    padding-top: 10px;

    max-width: 590px;

}


.intro-text p {

    margin-bottom: 20px;

    font-size: 16px;

}


.intro-text .lead {

    color: var(--text);

    font-size: 24px;

    line-height: 1.45;

}


.intro-text strong {

    color: var(--text);

}


/* =====================================================
   SERVICES
===================================================== */

.services-heading {

    display: grid;

    grid-template-columns:
        1fr .5fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;

}


.services-heading h2 {

    font-size:
        clamp(32px, 5vw, 56px);

}


.services-heading p {

    font-size: 15px;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.service-card {

    background: white;

    border-radius: var(--radius);

    overflow: hidden;

    border: 1px solid #e5e1d9;

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.service-card:hover {

    transform:
        translateY(-9px);

    box-shadow:
        0 25px 60px rgba(25,25,25,.10);

}


.service-image {

    height: 230px;

    overflow: hidden;

}


.service-image img {

    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.8,.2,1);

}


.service-card:hover
.service-image img {

    transform:
        scale(1.1);

}


.service-content {

    padding: 30px;

}


.service-content > span {

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

}


.service-content h3 {

    font-size: 23px;

    margin: 15px 0 10px;

}


.service-content p {

    font-size: 13px;

    margin-bottom: 20px;

}


.service-content a {

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;

}


.service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;

}


.service-tags span {

    border: 1px solid #d6d1c7;

    border-radius: 50px;

    padding: 9px 14px;

    color: #777;

    font-size: 10px;

    background: rgba(255,255,255,.45);

    transition: .3s ease;

}


.service-tags span:hover {

    color: white;

    border-color: var(--blue);

    background: var(--blue);

}


/* =====================================================
   BLACK FEATURE
===================================================== */

.black-feature {

    padding:
        150px 0;

    background: var(--black);

    color: white;

}


.feature-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.feature-image {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

}


.feature-image img {

    height: 650px;

    object-fit: cover;

    transition:
        transform .8s ease;

}


.feature-image:hover img {

    transform:
        scale(1.06);

}


.image-caption {

    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 25px;

    padding: 22px;

    border-radius: 16px;

    background:
        rgba(0,0,0,.58);

    backdrop-filter:
        blur(15px);

}


.image-caption span {

    display: block;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: .15em;

    margin-bottom: 7px;

}


.image-caption strong {

    font-family:'Roboto',sans-serif;
    color: black;
    font-size: 17px;

}


.feature-copy h2 {

    font-size:
        clamp(32px, 4.5vw, 56px);

    margin-bottom: 30px;

}


.feature-copy h2 span {

    color: white !important;

}


.feature-copy > p {

    color:
        #aeb2b6;

    font-size: 15px;

    margin-bottom: 17px;

}


.feature-copy strong {

    color: white;

}
.delay-1 .small-heading{
color: white;
}

.check-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 35px;

}


.check-grid div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #d2d4d7;

    font-size: 12px;

}


.check-grid span {

    color: #8da8ca;

}


/* =====================================================
   BESPOKE
===================================================== */

.bespoke-header {

    max-width: 850px;

    margin-bottom: 75px;

}


.bespoke-header h2 {

    font-size:
        clamp(32px, 5vw, 56px);

    margin-bottom: 25px;

}


.bespoke-header p {

    font-size: 17px;

}


.bespoke-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 100px;

}


.bespoke-text {

    max-width: 550px;

}


.bespoke-text .lead {

    color: var(--text);

    font-size: 24px;

    line-height: 1.5;

    margin-bottom: 25px;

}


.bespoke-text p {

    margin-bottom: 20px;

}


.bespoke-text strong {

    color: var(--text);

}


.bespoke-text .btn {

    margin-top: 20px;

}


.bespoke-list {

    border-top:
        1px solid var(--border);

}


.bespoke-list div {

    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 20px;

    align-items: center;

    padding: 20px 0;

    border-bottom:
        1px solid var(--border);

    font-family:'Roboto',sans-serif;
    font-weight: 600;

    transition:
        padding .3s ease,
        color .3s ease;

}


.bespoke-list div:hover {

    color: var(--blue);

    padding-left: 12px;

}


.bespoke-list span {

    color: #999;

    font-size: 10px;

}


/* =====================================================
   WORDPRESS
===================================================== */

.wordpress {

    background:
        var(--beige);

}


.wordpress-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.wordpress-image {

    overflow: hidden;

    border-radius: 25px;

}


.wordpress-image img {

    height: 600px;

    object-fit: cover;

    transition:
        transform .8s ease;

}


.wordpress-image:hover img {

    transform:
        scale(1.06);

}


.wordpress-content h2 {

    font-size:
        clamp(32px, 4.5vw, 56px);

    margin-bottom: 28px;

}


.wordpress-content > p {

    margin-bottom: 18px;

}


.wordpress-content strong {

    color: var(--text);

}


.wordpress-items {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;

}


.wordpress-items span {

    padding: 9px 13px;

    border-radius: 50px;

    background: white;

    border: 1px solid #ddd8ce;

    color: #666;

    font-size: 10px;

    transition: .3s ease;

}


.wordpress-items span:hover {

    background: var(--blue);

    color: white;

    border-color: var(--blue);

}


/* =====================================================
   ECOMMERCE
===================================================== */

.commerce-intro {

    max-width: 800px;

    margin-bottom: 75px;

}


.commerce-intro h2 {

    font-size:
        clamp(32px, 5vw, 56px);

    margin-bottom: 25px;

}


.commerce-intro p {

    max-width: 650px;

    font-size: 16px;

}


.commerce-layout {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.commerce-image {

    overflow: hidden;

    border-radius: 25px;

}


.commerce-image img {

    height: 620px;

    object-fit: cover;

    transition:
        transform .8s ease;

}


.commerce-image:hover img {

    transform:
        scale(1.06);

}


.commerce-list {

    border-top:
        1px solid var(--border);

}


.commerce-list div {

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 15px;

    align-items: center;

    padding: 18px 0;

    border-bottom:
        1px solid var(--border);

    transition:
        padding .3s ease;

}


.commerce-list div:hover {

    padding-left: 12px;

}


.commerce-list span {

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

}


.commerce-list strong {

    font-family: 'Roboto',sans-serif;

    font-size: 14px;

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

    position: relative;

    overflow: hidden;

    padding:
        150px 0;

    background: var(--black);

    color: white;

}


.final-shape {

    position: absolute;

    width: 500px;

    height: 500px;

    right: -250px;

    top: -250px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);

}


.cta-inner {

    position: relative;

    z-index: 2;

    max-width: 1000px;

}


.cta-inner h2 {

    color: white;

    font-size:
        clamp(35px, 6vw, 65px);

    margin: 25px 0;

}


.cta-inner h2 span {

    color: white;

}


.cta-inner p {

    max-width: 700px;

    color: #aeb2b6;

    font-size: 16px;

    margin-bottom: 35px;

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.8,.2,1);

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


.delay-1 {

    transition-delay: .12s;

}


.delay-2 {

    transition-delay: .24s;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .container {

        width:
            min(100% - 40px, 750px);

    }


    .intro-grid,
    .feature-grid,
    .bespoke-layout,
    .wordpress-grid,
    .commerce-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .services-heading {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .services-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .feature-image img,
    .wordpress-image img,
    .commerce-image img {

        height: 500px;

    }

}


@media (max-width: 650px) {

    .container {

        width:
            calc(100% - 30px);

    }


    .intro,
    .services,
    .bespoke,
    .wordpress,
    .commerce,
    .black-feature {

        padding:
            90px 0;

    }


    .hero {

        min-height:
            750px;

    }


    .hero-content {

        padding:
            100px 0;

    }


    .hero h1 {

        font-size:
            clamp(35px, 11vw, 58px);
      
    }
 .hero h1 span{
    text-decoration: none;
 }
    .hero-buttons {

        flex-direction:
            column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .section-meta {

        grid-template-columns:
            30px 1fr;

    }


    .section-meta strong {

        display: none;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-image {

        height: 250px;

    }


    .check-grid {

        grid-template-columns:
            1fr;

    }


    .feature-image img,
    .wordpress-image img,
    .commerce-image img {

        height: 420px;

    }


    .wordpress-items {

        gap: 6px;

    }


    .final-cta {

        padding:
            100px 0;

    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        transition-duration:
            .01ms !important;

    }

}




/* =====================================================
   NEW SECTIONS
===================================================== */

.split-heading {

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 50px;

    align-items: end;

    margin-bottom: 75px;

}

.split-heading h2 {

    max-width: 900px;

    font-size:
        clamp(32px, 5vw, 56px);

}

.heading-number {

    font-family: 'Roboto',sans-serif;

    font-size: 90px;

    line-height: .8;

    font-weight: 800;

    color: #eeeae2;

}


/* =====================================================
   SMALL BUSINESS
===================================================== */

.business-intro {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 90px;

    align-items: center;

}


.business-image {

    position: relative;

    overflow: hidden;

    border-radius: 26px;

}


.business-image img {

    height: 560px;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1);

}


.business-image:hover img {

    transform: scale(1.06);

}


.floating-label {

    position: absolute;

    left: 25px;

    bottom: 25px;

    padding: 20px 24px;

    border-radius: 15px;

    background: rgba(255,255,255,.92);

    backdrop-filter: blur(15px);

}


.floating-label span {

    display: block;

    color: var(--blue);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;

    margin-bottom: 5px;

}


.floating-label strong {

    font-family: 'Roboto',sans-serif;

    font-size: 16px;

}


.business-copy {

    max-width: 600px;

}


.large-copy {

    color: var(--text);

    font-size: 22px;

    line-height: 1.5;

    margin-bottom: 25px;

}


.business-copy p {

    margin-bottom: 20px;

}


.business-copy strong {

    color: var(--text);

}


.business-types {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top: 1px solid var(--border);

    margin-top: 80px;

}


.business-types div {

    padding: 20px 15px;

    border-bottom: 1px solid var(--border);

    border-right: 1px solid var(--border);

    font-size: 13px;

    font-weight: 600;

    transition:
        background .3s ease,
        color .3s ease,
        padding .3s ease;

}


.business-types div:hover {

    background: var(--blue);

    color: white;

    padding-left: 22px;

}


.business-bottom {

    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 40px;

    margin-top: 50px;

    max-width: 900px;

}


.bottom-line {

    width: 80px;

    height: 1px;

    margin-top: 12px;

    background: var(--blue);

}


.business-bottom p {

    font-size: 15px;

}


/* =====================================================
   RESPONSIVE DEVELOPMENT
===================================================== */

.responsive-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: center;

}


.responsive-copy {

    max-width: 560px;

}


.responsive-copy h2 {

    font-size:
        clamp(32px, 5vw, 56px);

    margin-bottom: 30px;

}


.responsive-copy p {

    margin-bottom: 20px;

}


.device-showcase {

    position: relative;

    min-height: 570px;

}


.device-main {

    width: 88%;

    margin-left: auto;

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(30,30,30,.12);

}


.device-main img {

    height: 510px;

    object-fit: cover;

    transition: transform .8s ease;

}


.device-main:hover img {

    transform: scale(1.05);

}


.device-small {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 30%;

    padding: 10px;

    background: white;

    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(30,30,30,.18);

}


.device-small img {

    height: 300px;

    object-fit: cover;

    border-radius: 13px;

}


.responsive-features {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    margin-top: 70px;

    border-top: 1px solid #d8d3c9;

}


.responsive-features div {

    min-height: 115px;

    padding: 20px;

    border-right: 1px solid #d8d3c9;

    border-bottom: 1px solid #d8d3c9;

    transition:
        background .3s ease,
        color .3s ease;

}


.responsive-features div:hover {

    background: var(--blue);

    color: white;

}


.responsive-features span {

    display: block;

    color: var(--blue);

    font-size: 9px;

    margin-bottom: 12px;

}


.responsive-features div:hover span {

    color: rgba(255,255,255,.55);

}


.responsive-features strong {

    font-family: 'Roboto',sans-serif;

    font-size: 13px;

}


.responsive-note {

    display: grid;

    grid-template-columns:  1fr;

    gap: 30px;

    /* max-width: 850px; */

    margin-top: 50px;

}


.responsive-note > span {

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;

}


/* =====================================================
   SEO
===================================================== */

.seo-header {

    max-width: 900px;

    margin-bottom: 80px;

}


.seo-header h2 {

    font-size:
        clamp(35px,5vw,56px);

    margin-bottom: 25px;

}


.seo-header p {

    max-width: 700px;

    font-size: 16px;

}


.seo-layout {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: start;

}


.seo-image {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

}


.seo-image img {

    height: 620px;

    object-fit: cover;

    transition: transform .8s ease;

}


.seo-image:hover img {

    transform: scale(1.05);

}


.seo-image-label {

    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 25px;

    background: rgba(255,255,255,.93);

    padding: 20px;

    border-radius: 15px;

}


.seo-image-label span {

    display: block;

    color: var(--blue);

    font-size: 9px;

    letter-spacing: .15em;

    margin-bottom: 5px;

}


.seo-image-label strong {

    font-family: 'Roboto',sans-serif;

}


.seo-content > p {

    margin-bottom: 20px;

}


.seo-content strong {

    color: var(--text);

}


.seo-list {

    margin-top: 30px;

    border-top: 1px solid var(--border);

}


.seo-list div {

    display: grid;

    grid-template-columns: 45px 1fr;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    font-size: 13px;

    transition:
        padding .3s ease,
        color .3s ease;

}


.seo-list div:hover {

    color: var(--blue);

    padding-left: 10px;

}


.seo-list span {

    color: var(--blue);

    font-size: 9px;

}


.seo-footer {

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 60px;

    max-width: 1000px;

    margin-top: 70px;

    padding-top: 40px;

    border-top: 1px solid var(--border);

}


.seo-footer p {

    max-width: 700px;

}


.text-link {

    align-self: center;

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

}


.text-link span {

    display: inline-block;

    margin-left: 8px;

    transition: transform .3s ease;

}


.text-link:hover span {

    transform: translate(4px,-3px);

}


/* =====================================================
   PERFORMANCE
===================================================== */

.performance-top {

    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;

}


.performance-top h2 {

    font-size:
        clamp(35px,5vw,56px);

}


.performance-top p {

    max-width: 500px;

}


.performance-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.performance-card {

    padding: 32px;

    min-height: 250px;

    background: white;

    border: 1px solid #e2ddd4;

    border-radius: 18px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.performance-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 20px 45px rgba(20,20,20,.08);

}


.performance-icon {

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 35px;

}


.performance-card h3 {

    font-size: 18px;

    margin-bottom: 12px;

}


.performance-card p {

    font-size: 12px;

}


.performance-bottom {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    margin-top: 60px;

    padding-top: 35px;

    border-top: 1px solid #d8d3c9;

}


.performance-bottom p,
.performance-bottom strong {

    font-size: 14px;

}


/* =====================================================
   REDESIGN
===================================================== */

.redesign-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

}


.redesign-image {

    overflow: hidden;

    border-radius: 25px;

}


.redesign-image img {

    height: 650px;

    object-fit: cover;

    transition: transform .8s ease;

}


.redesign-image:hover img {

    transform: scale(1.06);

}


.redesign-content h2 {

    font-size:
        clamp(32px,5vw,56px);

    margin-bottom: 30px;

}


.redesign-content > p {

    margin-bottom: 20px;

}
.redesign-content .small-heading{
    color: #0d274b !important;
}

.redesign-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin-top: 30px;

}


.redesign-list span {

    padding: 12px 15px;

    background: var(--beige);

    border-radius: 8px;

    font-size: 11px;

    transition:
        background .3s ease,
        color .3s ease;

}


.redesign-list span:hover {

    background: var(--blue);

    color: white;

}


.redesign-note {

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    max-width: 900px;

    margin-top: 70px;

    padding: 35px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.note-number {

    color: var(--blue);

    font-family:'Roboto',sans-serif;

    font-size: 32px;

    font-weight: 800;

}


/* =====================================================
   LANDING PAGES
===================================================== */

.landing-header {

    max-width: 850px;

    margin-bottom: 70px;

}


.landing-header h2 {

    font-size:
        clamp(32px,5vw,56px);

    margin-bottom: 25px;

}


.landing-header p {

    max-width: 700px;

}


.landing-layout {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;

}


.landing-card {

    min-height: 260px;

    padding: 35px;

    background: white;

    border-radius: 18px;

    border: 1px solid #dfdbd3;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}


.landing-card:hover {

    transform:
        translateY(-7px);

    background: var(--blue);

    color: white;

}


.landing-number {

    color: var(--blue);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 45px;

}


.landing-card:hover
.landing-number {

    color: rgba(255,255,255,.55);

}


.landing-card h3 {

    font-size: 20px;

    margin-bottom: 12px;

}


.landing-card p {

    font-size: 12px;

}


.landing-card:hover p {

    color: rgba(255,255,255,.7);

}


.landing-footer {

    max-width: 800px;

    margin-top: 55px;

}


/* =====================================================
   APPLICATIONS
===================================================== */

.applications-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.applications-content {

    max-width: 600px;

}


.applications-content h2 {

    font-size:
        clamp(32px,5vw,56px);

    margin-bottom: 30px;

}


.applications-content p {

    margin-bottom: 20px;

}


.application-visual {

    overflow: hidden;

    border-radius: 25px;

}


.application-visual img {

    height: 560px;

    object-fit: cover;

    transition: transform .8s ease;

}


.application-visual:hover img {

    transform: scale(1.06);

}


.application-items {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 10px;

    margin-top: 70px;

}


.application-items div {

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 10px;

    font-size: 12px;

    font-weight: 600;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.application-items div:hover {

    background: var(--blue);

    color: white;

    transform: translateY(-4px);

}


.application-note {

    max-width: 900px;

    margin-top: 60px;

    padding: 30px;

    background: var(--beige);

    border-radius: 15px;

    font-size: 14px;

}


/* =====================================================
   API
===================================================== */

.api-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;

}


.api-image {

    overflow: hidden;

    border-radius: 25px;

}


.api-image img {

    height: 650px;

    object-fit: cover;

    transition: transform .8s ease;

}


.api-image:hover img {

    transform: scale(1.06);

}


.api-content h2 {

    font-size:
        clamp(32px,5vw,56px);

    margin-bottom: 30px;

}


.api-content > p {

    margin-bottom: 20px;

}


.api-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    margin: 35px 0;

    border-top: 1px solid #d8d3c9;

}


.api-points div {

    padding: 18px 0;

    border-bottom: 1px solid #d8d3c9;

    font-size: 12px;

    font-weight: 600;

}


.api-points span {

    color: var(--blue);

    margin-right: 15px;

}


.api-final {

    font-size: 14px;

}


/* =====================================================
   PROCESS
===================================================== */

.process-heading {

    max-width: 800px;

    margin-bottom: 80px;

}


.process-heading h2 {

    font-size:
        clamp(32px,5vw,56px);

    margin-bottom: 25px;

}


.process-heading p {

    max-width: 650px;

}


.process-list {

    border-top: 1px solid var(--border);

}


.process-item {

    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 60px;

    padding: 45px 0;

    border-bottom: 1px solid var(--border);

    transition:
        padding .35s ease,
        background .35s ease;

}


.process-item:hover {

    padding-left: 20px;

}


.process-number {

    color: var(--blue);

    font-family: 'Roboto',sans-serif;

    font-size: 15px;

    font-weight: 800;

}


.process-content {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 50px;

}


.process-content h3 {

    font-size: 28px;

}


.process-content p {

    max-width: 650px;

    font-size: 14px;

}


/* =====================================================
   FINAL LIGHT CTA
===================================================== */

.light-final-cta {

    padding: 130px 0;

    background:
        var(--beige);

}


.light-cta-inner {

    max-width: 900px;

}


.light-cta-inner h2 {

    font-size:
        clamp(35px,6vw,65px);

    margin: 25px 0;

}


.light-cta-inner p {

    max-width: 650px;

    font-size: 16px;

    margin-bottom: 35px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .business-intro,
    .responsive-grid,
    .seo-layout,
    .redesign-grid,
    .applications-grid,
    .api-layout {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .business-types {

        grid-template-columns:
            repeat(2,1fr);

    }


    .responsive-features {

        grid-template-columns:
            repeat(2,1fr);

    }


    .performance-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .landing-layout {

        grid-template-columns:
            repeat(2,1fr);

    }


    .application-items {

        grid-template-columns:
            repeat(2,1fr);

    }


    .process-content {

        grid-template-columns:
            220px 1fr;

    }


    .device-showcase {

        max-width: 700px;

    }

}


@media (max-width: 650px) {

    .split-heading {

        grid-template-columns: 1fr;

    }
.performance-top p {

   display: none;

}

    .heading-number {

        display: none;

    }


    .business-image img,
    .seo-image img,
    .redesign-image img,
    .api-image img {

        height: 420px;

    }


    .business-types,
    .responsive-features,
    .performance-grid,
    .landing-layout,
    .application-items {

        grid-template-columns: 1fr;

    }


    .business-bottom,
    .responsive-note,
    .seo-footer,
    .performance-bottom,
    .redesign-note {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .device-showcase {

        min-height: 400px;

    }


    .device-main {

        width: 90%;

    }


    .device-main img {

        height: 350px;

    }


    .device-small {

        width: 32%;

    }


    .device-small img {

        height: 200px;

    }


    .process-item {

        grid-template-columns: 50px 1fr;

        gap: 20px;

    }


    .process-content {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .process-content h3 {

        font-size: 22px;

    }

}



/* =====================================================
   WHY CHOOSE
===================================================== */

.why-section {
    padding: 140px 0;
}

.why-heading {
    display: grid;
    grid-template-columns: 1.2fr .65fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 80px;
}

.why-heading h2 {
    max-width: 850px;
    font-size: clamp(32px, 5.5vw, 56px);
    line-height: .98;
    margin-top: 22px;
}

.why-heading p {
    max-width: 450px;
    font-size: 16px;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    padding: 42px;
    background: #faf9f6;
    border: 1px solid #e3ded5;
    border-radius: 20px;
    min-height: 330px;
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 25px 60px rgba(20,20,20,.08);
}

.why-card-large {
    grid-row: span 2;
}

.why-card-wide {
    grid-column: span 2;
    min-height: auto;
}

.why-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 65px;
}

.why-number {
    color: #133360;
    font-size: 11px;
    font-weight: 800;
}

.why-tag {
    color: #777;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
}

.why-card h3 {
    max-width: 500px;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.why-card p {
    max-width: 600px;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.address-box {
    margin-top: 45px;
    padding: 25px;
    background: #eeeae2;
    border-radius: 13px;
}

.address-box > span {
    display: block;
    color: #133360;
    font-size: 9px;
    letter-spacing: .15em;
    font-weight: 700;
    margin-bottom: 12px;
}

.address-box strong {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
}

.address-box p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

.why-wide-content {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 80px;
}


/* =====================================================
   LOCAL SECTION
===================================================== */

.local-section {
    padding: 140px 0;
}

.local-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.local-content {
    max-width: 650px;
}

.local-content h2 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    margin: 22px 0 30px;
}

.local-content p {
    max-width: 600px;
    margin-bottom: 20px;
}


/* Abstract map */

.local-map {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 25px;
    background:
        linear-gradient(135deg,
        #e8e4dc 0%,
        #f6f4ef 50%,
        #e4e0d8 100%);
}

.map-inner {
    position: absolute;
    inset: 0;
}

.map-inner::before,
.map-inner::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 1px;
    background: rgba(19,51,96,.12);
    left: -20%;
    top: 50%;
    transform: rotate(-25deg);
}

.map-inner::after {
    top: 62%;
    transform: rotate(20deg);
}

.map-circle {
    position: absolute;
    border: 1px solid rgba(19,51,96,.14);
    border-radius: 50%;
}

.circle-one {
    width: 380px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle-two {
    width: 260px;
    height: 260px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle-three {
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.map-dot {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #133360;
    font-size: 11px;
    font-weight: 700;
}

.map-dot span {
    width: 8px;
    height: 8px;
    background: #133360;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(19,51,96,.12);
}

.dot-twickenham {
    left: 46%;
    top: 46%;
}

.dot-richmond {
    left: 20%;
    top: 30%;
}

.dot-hounslow {
    right: 15%;
    top: 20%;
}

.dot-kingston {
    left: 20%;
    bottom: 25%;
}


.area-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 80px;
    border-top: 1px solid #d7d2c9;
}

.area-list div {
    padding: 22px 15px;
    border-right: 1px solid #d7d2c9;
    border-bottom: 1px solid #d7d2c9;
    font-size: 12px;
    font-weight: 600;
    transition:
        background .3s ease,
        color .3s ease,
        padding-left .3s ease;
}

.area-list div:hover {
    background: #133360;
    color: #fff;
    padding-left: 22px;
}

.local-footer {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    max-width: 950px;
    margin-top: 60px;
}

.local-footer > span {
    width: 70px;
    height: 1px;
    background: #133360;
    margin-top: 10px;
}

.local-footer p {
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   BUSINESS APPROACH
===================================================== */

.business-approach {
    padding: 140px 0;
}

.approach-header {
    max-width: 950px;
    margin-bottom: 80px;
}

.approach-header h2 {
    font-size: clamp(32px, 5.5vw, 56px);
    line-height: .98;
    margin: 22px 0 30px;
}

.approach-header p {
    max-width: 750px;
    font-size: 16px;
    line-height: 1.8;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.approach-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.approach-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform .8s ease;
}

.approach-image:hover img {
    transform: scale(1.06);
}

.image-caption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    padding: 22px;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(12px);
    border-radius: 14px;
}

.image-caption span {
    display: block;
    color: #133360;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 6px;
}

.image-caption strong {
    font-family: 'Roboto',sans-serif;
    font-size: 17px;
}

.questions {
    border-top: 1px solid #ddd8cf;
}

.question-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd8cf;
    transition:
        padding-left .3s ease,
        background .3s ease;
}

.question-item:hover {
    padding-left: 12px;
    background: #faf9f6;
}

.question-item span {
    color: #133360;
    font-size: 10px;
    font-weight: 800;
}

.question-item p {
    font-size: 15px;
    margin: 0;
}

.approach-footer {
    max-width: 800px;
    margin-top: 65px;
    padding-top: 35px;
    border-top: 1px solid #ddd8cf;
}

.approach-footer p {
    font-size: 15px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.contact-cta {
    padding: 140px 0;
    background: #133360;
    color: #fff;
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 120px;
    align-items: end;
}

.contact-cta .small-heading {
    color: rgba(255,255,255,.55);
}

.cta-copy h2 {
    max-width: 850px;
    font-size: clamp(35px, 6vw, 65px);
    line-height: .95;
    margin: 25px 0 35px;
}

.cta-copy p {
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.cta-copy strong {
    color: #fff;
}

.contact-cta .btn-blue {
    display: inline-flex;
    margin-top: 25px;
    background: #fff;
    color: #133360;
}

.contact-cta .btn-blue:hover {
    background: #eeeae2;
    color: #133360;
}

.contact-details {
    border-top: 1px solid rgba(255,255,255,.2);
}

.contact-detail {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.contact-detail span {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 10px;
}

.contact-detail a,
.contact-detail strong {
    color: #fff;
    font-family: 'Roboto',sans-serif;
    font-size: 16px;
}

.contact-detail a {
    transition: opacity .3s ease;
}

.contact-detail a:hover {
    opacity: .65;
}


/* =====================================================
   FAQ
===================================================== */

.faq-section {
    padding: 150px 0;
}

.faq-heading {
    max-width: 1000px;
    margin-bottom: 80px;
}

.faq-heading h2 {
    font-size: clamp(32px, 5.5vw, 56px);
    line-height: 1.2;
    margin-top: 22px;
}

.faq-list {
    max-width: 1050px;
    margin: 0 auto;
    border-top: 1px solid #d9d4cb;
}

.faq-item {
    border-bottom: 1px solid #d9d4cb;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Roboto',sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary b {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: 1px solid #133360;
    border-radius: 50%;
    color: #133360;
    font-size: 20px;
    font-weight: 400;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.faq-item[open] summary b {
    transform: rotate(45deg);
    background: #133360;
    color: #fff;
}

.faq-answer {
    max-width: 800px;
    padding: 0 60px 35px 0;
    animation: faqOpen .4s ease;
}

.faq-answer p {
    color: #666a70;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 16px;
}

@keyframes faqOpen {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1000px) {

    .why-heading,
    .local-layout,
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card-large,
    .why-card-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .why-wide-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .area-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cta-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-details {
        max-width: 500px;
    }

}


@media (max-width: 700px) {
     
    .why-section,
    .local-section,
    .business-approach,
    .faq-section {
        padding: 90px 0;
    }

    .contact-cta {
        padding: 90px 0;
    }

    .why-heading {
        margin-bottom: 50px;
    }

    .why-heading h2,
    .local-content h2,
    .approach-header h2,
    .faq-heading h2 {
        font-size: 42px;
    }

    .why-card {
        padding: 28px;
        min-height: auto;
    }

    .why-card-top {
        margin-bottom: 40px;
    }

    .why-card h3 {
        font-size: 24px;
    }

    .local-map {
        height: 380px;
    }

    .area-list {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .local-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .local-footer > span {
        margin-bottom: 5px;
    }

    .approach-image img {
        height: 420px;
    }

    .question-item {
        grid-template-columns: 35px 1fr;
    }

    .cta-copy h2 {
        font-size: 46px;
    }

    .faq-heading {
        margin-bottom: 50px;
    }

    .faq-item summary {
        padding: 23px 0;
        font-size: 15px;
        line-height: 1.45;
    }

    .faq-answer {
        padding-right: 10px;
        padding-bottom: 25px;
    }

}
    