/* ============================================================
   TERRIL MARKETING
   CLEAN GLOBAL STYLESHEET

   01. Variables
   02. Reset
   03. Global Layout
   04. Typography
   05. Buttons
   06. Header
============================================================ */

/* ============================================================
   01. VARIABLES
============================================================ */

:root {
    /* Brand */
    --navy-deep: #071426;
    --navy: #0d2444;
    --navy-light: #15365f;

    --blue: #3478f6;
    --blue-dark: #286ae9;
    --blue-light: #5f8cff;

    --cyan: #25d0c6;
    --cyan-light: #67e6d9;

    --green: #52d681;

    /* Neutral */
    --white: #ffffff;
    --off-white: #f5f7fa;
    --text: #101828;
    --text-muted: #667085;
    --border: #d9e0ea;

    /* Typography */
    --font-display:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "Helvetica Neue",
        "Segoe UI",
        Arial,
        sans-serif;

    --font-text:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Text",
        "Helvetica Neue",
        "Segoe UI",
        Arial,
        sans-serif;

    --font-mono:
        "SFMono-Regular",
        Consolas,
        monospace;

    /* Layout */
    --container: 1280px;

    /* Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 26px;

    /* Animation */
    --transition: .25s ease;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--off-white);
    color: var(--text);
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}

/* ============================================================
   03. GLOBAL LAYOUT
============================================================ */

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

section {
    position: relative;
}

/* ============================================================
   04. TYPOGRAPHY
============================================================ */

.eyebrow {
    display: block;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow--cyan {
    color: var(--cyan);
}

.section-title {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(
        44px,
        5vw,
        72px
    );
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.055em;
}

.section-title--light {
    color: white;
}

.section-copy {
    max-width: 590px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.section-copy--light {
    color: rgba(
        255,
        255,
        255,
        .58
    );
}

.section-heading {
    display: grid;
    grid-template-columns:
        1.2fr
        .8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 70px;
}

/* ============================================================
   05. BUTTONS
============================================================ */

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding:
        0
        24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform var(--transition),
        background var(--transition);
}

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

.button--large {
    min-height: 58px;
}

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

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

.button--secondary {
    background: var(--cyan);
    color: var(--navy-deep);
}

.button--ghost {
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .2
        );
    color: white;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
}

/* ============================================================
   06. HEADER
============================================================ */

.header {
    position: relative;
    z-index: 100;
    background: var(--navy-deep);
    color: white;
}

/* Utility */

.header__utility {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .1
        );
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__phone-label {
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.header__phone a {
    font-size: 14px;
    font-weight: 600;
}

.header__utility-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Social Icons */

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .14
        );
    border-radius: 9px;
    color:
        rgba(
            255,
            255,
            255,
            .75
        );
}

.social-links svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Main Header */

.header__main {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .2
        );
    border-radius: 10px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
}

.brand__name {
    font-size: 17px;
    font-weight: 650;
    letter-spacing: -.03em;
}

/* Navigation */

.navigation {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navigation > a,
.navigation__dropdown-trigger {
    color:
        rgba(
            255,
            255,
            255,
            .72
        );
    font-size: 14px;
    font-weight: 500;
}

.navigation > a:hover,
.navigation__dropdown-trigger:hover {
    color: white;
}

/* Dropdown */

.navigation__dropdown {
    position: relative;
}

.navigation__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
}

.navigation__dropdown-menu {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 320px;
    padding: 8px;
    border-radius: 16px;
    background:
        rgba(
            7,
            20,
            38,
            .98
        );
    opacity: 0;
    visibility: hidden;
    transform:
        translate(-50%,10px);
    transition:
        .25s ease;
}

.navigation__dropdown:hover
.navigation__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform:
        translate(-50%,0);
}

.navigation__dropdown-menu a {
    display: block;
    padding: 15px;
    border-radius: 10px;
}

.navigation__dropdown-menu a:hover {
    background:
        rgba(
            52,
            120,
            246,
            .15
        );
}

.navigation__dropdown-menu strong {
    display: block;
    color: white;
    font-size: 13px;
}

.navigation__dropdown-menu small {
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
}

.menu-toggle,
.menu-button {
    display: none;
}

/* ============================================================

   07. Footer
   08. Homepage Hero
   09. Growth Signal

============================================================ */

/* ============================================================
   07. FOOTER
============================================================ */

.footer {
    padding:
        80px
        0
        35px;
    background: #06111f;
    color: white;
}

.footer__grid {
    display: grid;
    grid-template-columns:
        1.5fr
        .7fr
        .9fr
        .8fr
        1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer__brand {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 21px;
    font-weight: 650;
    letter-spacing: -.035em;
}

.footer__brand-column p {
    max-width: 330px;
    margin-bottom: 25px;
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
    font-size: 13px;
    line-height: 1.7;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact a {
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 13px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__column h3,
.footer__utility h3 {
    margin-bottom: 10px;
    color:
        rgba(
            255,
            255,
            255,
            .4
        );
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer__column a {
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 13px;
}

.footer__utility {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__login {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    border-top:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .1
        );
    color:
        rgba(
            255,
            255,
            255,
            .35
        );
    font-size: 11px;
}

/* ============================================================
   08. HOMEPAGE HERO
============================================================ */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 900px;
    padding:
        90px
        0
        100px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        );
    background-size: 60px 60px;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
}

.hero__glow--one {
    width: 600px;
    height: 600px;
    right: -150px;
    top: 80px;
    background:
        radial-gradient(
            circle,
            rgba(
                52,
                120,
                246,
                .25
            ),
            transparent
        );
}

.hero__glow--two {
    width: 450px;
    height: 450px;
    left: 30%;
    bottom: -250px;
    background:
        radial-gradient(
            circle,
            rgba(
                37,
                208,
                198,
                .15
            ),
            transparent
        );
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        1.05fr
        .95fr;
    align-items: center;
    gap: 90px;
}

.hero__eyebrow {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero__title {
    max-width: 760px;
    margin-bottom: 30px;
    font-size: clamp(
        64px,
        7vw,
        100px
    );
    font-weight: 600;
    line-height: .92;
    letter-spacing: -.065em;
}

.hero__title span {
    display: block;
    background:
        linear-gradient(
            100deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero__description {
    max-width: 620px;
    margin-bottom: 38px;
    color:
        rgba(
            255,
            255,
            255,
            .68
        );
    font-size: 18px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 14px;
}

.hero__proof {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    margin-top: 55px;
    border-top:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.hero__proof-item {
    padding-top: 20px;
    border-right:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .08
        );
}

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

.hero__proof-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.hero__proof-item span {
    color:
        rgba(
            255,
            255,
            255,
            .4
        );
    font-size: 11px;
}

/* ============================================================
   09. GROWTH SIGNAL
============================================================ */

.growth-signal {
    padding: 28px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 22px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
    backdrop-filter: blur(20px);
}

.growth-signal__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.growth-signal__eyebrow {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .15em;
}

.growth-signal__top h2 {
    margin:
        8px
        0
        0;
    font-size: 20px;
}

.growth-signal__live {
    display: flex;
    align-items: center;
    gap: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 10px;
    text-transform: uppercase;
}

.signal-core {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin: 25px auto;
}

.signal-orbit {
    position: absolute;
    border-radius: 50%;
    border:
        1px
        solid
        rgba(
            95,
            140,
            255,
            .18
        );
}

.signal-orbit--outer {
    width: 85%;
    height: 85%;
}

.signal-orbit--middle {
    width: 62%;
    height: 62%;
}

.signal-orbit--inner {
    width: 40%;
    height: 40%;
}

.signal-center {
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:
        1px
        solid
        rgba(
            37,
            208,
            198,
            .35
        );
    background:
        rgba(
            37,
            208,
            198,
            .08
        );
}

.signal-center span {
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 10px;
}

.signal-center strong {
    font-size: 42px;
    line-height: 1;
}

.signal-center small {
    color: var(--cyan);
    font-size: 8px;
    letter-spacing: .15em;
}

.signal-node {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
    border-radius: 14px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
}

.signal-node span {
    font-size: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
}

.signal-node strong {
    font-size: 17px;
}

.signal-node--seo {
    top: 5%;
    left: 44%;
}

.signal-node--local {
    right: 3%;
    top: 42%;
}

.signal-node--paid {
    bottom: 5%;
    left: 44%;
}

.signal-node--ai {
    left: 3%;
    top: 42%;
}

.growth-signal__footer {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            1fr
        );
    gap: 1px;
}

.growth-signal__footer div {
    padding: 15px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
}

.growth-signal__footer span {
    display: block;
    color:
        rgba(
            255,
            255,
            255,
            .4
        );
    font-size: 10px;
}

.growth-signal__footer strong {
    color: var(--cyan);
    font-size: 14px;
}

/* ============================================================

   10. Homepage Sections
   11. Services Page
   12. Web Design Page

============================================================ */

/* ============================================================
   10. HOMEPAGE SECTIONS
============================================================ */

/* ------------------------------------------------------------
   INTRO
------------------------------------------------------------- */

.intro {
    padding:
        140px
        0;
    background: var(--off-white);
}

.intro__grid {
    display: grid;
    grid-template-columns:
        1.05fr
        .95fr;
    align-items: end;
    gap: 100px;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom:
        1px
        solid
        var(--text);
    font-size: 14px;
    font-weight: 600;
}

/* ------------------------------------------------------------
   SERVICES
------------------------------------------------------------- */

.services {
    padding:
        130px
        0;
    background: white;
}

.services__grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            1fr
        );
    gap: 20px;
}

.service-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border:
        1px
        solid
        var(--border);
    border-radius: 18px;
    background: white;
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0
        20px
        50px
        rgba(
            13,
            36,
            68,
            .08
        );
}

.service-card__top {
    display: flex;
    justify-content: space-between;
}

.service-card__number {
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border:
        1px
        solid
        var(--border);
    border-radius: 10px;
    color: var(--blue);
}

.service-card__label {
    display: block;
    margin-bottom: 15px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.service-card h3 {
    max-width: 420px;
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.services__all {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
}

/* ------------------------------------------------------------
   SEARCH SECTION
------------------------------------------------------------- */

.search {
    padding:
        140px
        0;
    background:
        linear-gradient(
            140deg,
            #071426,
            #0d2444
        );
    color: white;
}

.search__grid {
    display: grid;
    grid-template-columns:
        .9fr
        1.1fr;
    align-items: center;
    gap: 100px;
}

.search-stack {
    border-top:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.search-stack__item {
    display: grid;
    grid-template-columns:
        70px
        1fr;
    gap: 25px;
    padding: 28px 0;
    border-bottom:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.search-stack__code {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
}

.search-stack h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 20px;
}

.search-stack p {
    margin: 0;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

/* ------------------------------------------------------------
   GROWTH FRAMEWORK
------------------------------------------------------------- */

.signal-section {
    padding:
        140px
        0;
    background: var(--off-white);
}

.signal-metrics {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    border:
        1px
        solid
        var(--border);
}

.signal-metrics article {
    min-height: 270px;
    padding: 30px;
    background: white;
    border-right:
        1px
        solid
        var(--border);
}

.signal-metrics article:last-child {
    border-right: 0;
}

.signal-metrics span {
    display: block;
    margin-bottom: 70px;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.signal-metrics strong {
    display: block;
    margin-bottom: 12px;
    font-size: 21px;
}

.signal-metrics p {
    margin: 0;
    color: var(--text-muted);
}

/* ------------------------------------------------------------
   HOMEPAGE APPROACH
------------------------------------------------------------- */

.approach {
    padding:
        140px
        0;
    background: #06111f;
    color: white;
}

.approach__heading {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 90px;
    margin-bottom: 50px;
}

.approach-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
}

.approach-grid article {
    min-height: 300px;
    padding: 30px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.approach-grid span {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.approach-grid h3 {
    margin-top: 60px;
    margin-bottom: 12px;
    color: white;
    font-size: 24px;
}

.approach-grid p {
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

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

.cta-section {
    padding:
        100px
        0;
    background: var(--off-white);
}

.cta-card {
    min-height: 390px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    padding: 65px;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #0d2444,
            #071426
        );
    color: white;
}

.cta-card h2 {
    max-width: 750px;
    font-size: clamp(
        48px,
        5vw,
        78px
    );
    line-height: .95;
    letter-spacing: -.055em;
}

.cta-card p {
    max-width: 580px;
    color:
        rgba(
            255,
            255,
            255,
            .55
        );
}

/* ============================================================
   11. SERVICES PAGE
============================================================ */

.page-hero {
    padding:
        120px
        0
        110px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.page-hero__grid {
    display: grid;
    grid-template-columns:
        1fr
        .8fr;
    align-items: end;
    gap: 80px;
}

.page-hero__eyebrow {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.page-hero__title {
    font-size: clamp(
        60px,
        6vw,
        90px
    );
    line-height: .95;
    letter-spacing: -.06em;
}

.page-hero__title span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    color: transparent;
}

.page-hero__side p {
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

.services-intro {
    padding:
        120px
        0;
}

.services-intro__grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 80px;
}

.services-system {
    padding:
        130px
        0;
}

/* ============================================================
   12. WEB DESIGN PAGE
============================================================ */

.web-hero {
    padding:
        120px
        0;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.web-hero__grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 90px;
    align-items: center;
}

.web-hero__title {
    font-size: clamp(
        55px,
        6vw,
        90px
    );
    line-height: .95;
    letter-spacing: -.065em;
}

.web-hero__title span {
    display: block;
    color: var(--cyan);
}

.web-hero__description {
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 17px;
    line-height: 1.7;
}

.website-preview {
    padding: 30px;
    border-radius: 22px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
}

.web-section {
    padding:
        130px
        0;
}

.web-section__grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 90px;
}

.web-framework {
    padding:
        140px
        0;
    background: #06111f;
    color: white;
}

.web-framework__grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
}

.web-framework__grid article {
    padding: 30px;
    min-height: 280px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.web-framework__grid span {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.web-journey {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            1fr
        );
    gap: 20px;
}

.web-journey article {
    padding: 35px;
    border:
        1px
        solid
        var(--border);
    background: white;
    border-radius: 18px;
}

.web-process {
    padding:
        130px
        0;
}

.web-process-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
}

.web-process-grid article {
    min-height: 280px;
    padding: 32px;
    background: white;
    border:
        1px
        solid
        var(--border);
}

.web-process-grid span {
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

/* ============================================================

   13. Responsive
   14. Final Utility Fixes

============================================================ */

/* ============================================================
   13. RESPONSIVE
============================================================ */

@media (max-width:1200px) {
    .footer__grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

    .hero__grid {
        gap: 50px;
    }

    .hero__title {
        font-size:
            clamp(
                58px,
                7vw,
                82px
            );
    }
}

@media (max-width:1050px) {
    .header__utility {
        display: none;
    }

    .hero__grid,
    .web-hero__grid,
    .web-section__grid,
    .intro__grid,
    .search__grid,
    .page-hero__grid,
    .section-heading,
    .approach__heading {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .signal-metrics {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

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

    .web-framework__grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .web-process-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .web-journey {
        grid-template-columns: 1fr;
    }

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

@media (max-width:720px) {
    .container {
        width:
            calc(
                100% - 32px
            );
    }

    /* --------------------------------
       MOBILE HEADER
    -------------------------------- */

    .header__main {
        min-height: 72px;
    }

    .brand__name {
        font-size: 15px;
    }

    .menu-toggle {
        display: none;
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-button span {
        width: 22px;
        height: 2px;
        background: white;
    }

    .navigation {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        background: var(--navy-deep);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
    }

    .menu-toggle:checked ~ .navigation {
        opacity: 1;
        visibility: visible;
    }

    .navigation__dropdown-menu {
        display: none;
    }

    .navigation a {
        font-size: 22px;
    }

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

    .hero {
        min-height: auto;
        padding:
            70px
            0
            80px;
    }

    .hero__title {
        font-size:
            clamp(
                48px,
                13vw,
                68px
            );
    }

    .hero__description {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .growth-signal {
        margin-top: 40px;
        padding: 20px;
    }

    .signal-center {
        width: 110px;
        height: 110px;
    }

    .signal-center strong {
        font-size: 34px;
    }

    /* --------------------------------
       TYPOGRAPHY
    -------------------------------- */

    .section-title {
        font-size:
            clamp(
                38px,
                10vw,
                52px
            );
    }

    .section-copy {
        font-size: 16px;
    }

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

    .service-card {
        min-height: auto;
        padding: 28px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    .signal-metrics {
        grid-template-columns: 1fr;
    }

    .signal-metrics article {
        border-right: 0;
    }

    .approach-grid,
    .web-framework__grid,
    .web-process-grid {
        grid-template-columns: 1fr;
    }

    /* --------------------------------
       WEB DESIGN
    -------------------------------- */

    .web-hero {
        padding:
            80px
            0;
    }

    .web-hero__title {
        font-size:
            48px;
    }

    .website-preview {
        margin-top: 40px;
    }

    .web-points {
        grid-template-columns: 1fr;
    }

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

    .cta-card {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }

    .cta-card h2 {
        font-size:
            42px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
    }
}

/* ============================================================
   14. FINAL UTILITY FIXES
============================================================ */

/* Header CTA */

.header__cta {
    display: inline-flex;
    align-items: center;
}

/* Keep icons aligned */

.social-links svg {
    flex-shrink: 0;
}

/* Prevent horizontal overflow */

html,
body {
    overflow-x: hidden;
}

.approach-grid article {
    min-height: 260px;
    padding: 35px;
    background:
        rgba(
            255,
            255,
            255,
            .02
        );
}

/* ============================================================
   WEB DESIGN WEBSITE PREVIEW
============================================================ */

.web-hero__visual {
    display: flex;
    justify-content: center;
}

.website-preview {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .18
        );
    border-radius: 22px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    backdrop-filter: blur(20px);
}

.website-preview__top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border-bottom:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.website-preview__top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background:
        rgba(
            255,
            255,
            255,
            .45
        );
}

.website-preview__body {
    padding: 40px;
}

.website-preview__headline {
    width: 75%;
    height: 24px;
    margin-bottom: 25px;
    border-radius: 8px;
    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.website-preview__line {
    width: 90%;
    height: 10px;
    margin-bottom: 14px;
    border-radius: 20px;
    background:
        rgba(
            255,
            255,
            255,
            .18
        );
}

.website-preview__line--short {
    width: 60%;
}

.website-preview__cards {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            1fr
        );
    gap: 12px;
    margin-top: 45px;
}

.website-preview__cards div {
    height: 120px;
    border-radius: 14px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
}

/* ============================================================
   SEO PAGE
============================================================ */

/* ============================================================
   SEO HERO ENHANCEMENTS
============================================================ */

.seo-hero {
    position: relative;
    overflow: hidden;
    padding:
        120px
        0
        130px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        );
    background-size:
        60px
        60px;
}

.seo-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns:
        1fr
        .8fr;
    align-items: center;
    gap: 80px;
}

.seo-hero__title {
    max-width: 800px;
    font-size:
        clamp(
            60px,
            6vw,
            90px
        );
    line-height: .95;
    letter-spacing: -.06em;
}

.seo-hero__title span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.seo-hero__description {
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================================
   SEO PILLARS CARDS
============================================================ */

.seo-pillars {
    padding:
        130px
        0;
}

.seo-pillars__grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 20px;
}

.seo-pillar {
    min-height: 320px;
    padding: 30px;
    border:
        1px
        solid
        var(--border);
    border-radius: 18px;
    background: white;
}

.seo-pillar__number {
    display: block;
    margin-bottom: 60px;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.seo-pillar h3 {
    margin-bottom: 15px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.seo-pillar p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   AI SEARCH SECTION
============================================================ */

.ai-search {
    padding:
        140px
        0;
    background: #06111f;
    color: white;
}

.ai-search__grid {
    display: grid;
    grid-template-columns:
        .9fr
        1.1fr;
    gap: 90px;
    align-items: center;
}

.ai-search__cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ai-search__card {
    padding: 25px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
    border-radius: 16px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
}

.ai-search__card span {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
}

.ai-search__card h3 {
    margin:
        12px
        0;
    color: white;
    font-size: 22px;
}

.ai-search__card p {
    margin: 0;
    color:
        rgba(
            255,
            255,
            255,
            .55
        );
}

/* ============================================================
   SEO LOCAL SECTION
============================================================ */

.seo-local {
    padding:
        130px
        0;
}

.seo-local__grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    border:
        1px
        solid
        var(--border);
}

.seo-local__item {
    padding: 35px;
    min-height: 250px;
    background: white;
    border-right:
        1px
        solid
        var(--border);
}

.seo-local__item:last-child {
    border-right: 0;
}

.seo-local__item span {
    display: block;
    margin-bottom: 60px;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.seo-local__item h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.seo-local__item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================================
   SEO PROCESS
============================================================ */

.seo-process {
    padding:
        140px
        0;
    background: #06111f;
    color: white;
}

.seo-process-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
}

.seo-process-grid article {
    min-height: 280px;
    padding: 30px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.seo-process-grid span {
    display: block;
    margin-bottom: 70px;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.seo-process-grid h3 {
    color: white;
    margin-bottom: 12px;
}

.seo-process-grid p {
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 14px;
}

/* ============================================================
   SEO RESPONSIVE
============================================================ */

@media(max-width:1050px) {
    .seo-hero__grid,
    .ai-search__grid {
        grid-template-columns: 1fr;
    }

    .seo-pillars__grid,
    .seo-local__grid,
    .seo-process-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }
}

@media(max-width:720px) {
    .seo-pillars__grid,
    .seo-local__grid,
    .seo-process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SEO SEARCH INTELLIGENCE HERO
============================================================ */

.seo-hero {
    padding:
        120px
        0;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.seo-hero__grid {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 80px;
    align-items: center;
}

.seo-hero__eyebrow {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.seo-hero__title {
    font-size:
        clamp(
            60px,
            6vw,
            90px
        );
    line-height: .95;
    letter-spacing: -.06em;
}

.seo-hero__title span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.seo-hero__description {
    max-width: 560px;
    margin:
        30px
        0;
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

/* SEARCH INTELLIGENCE CARD */

.search-intelligence {
    padding: 30px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 24px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
    backdrop-filter: blur(20px);
}

.search-intelligence__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    font-size: 10px;
    letter-spacing: .15em;
}

.search-intelligence__header span {
    color: var(--cyan);
}

.search-intelligence__header strong {
    color: var(--green);
}

.search-score {
    display: flex;
    align-items: end;
    gap: 8px;
}

.search-score span {
    position: absolute;
    margin-top: -70px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 12px;
}

.search-score strong {
    font-size: 80px;
    line-height: 1;
}

.search-score small {
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    margin-bottom: 10px;
}

.search-network {
    position: relative;
    height: 320px;
    margin-top: 30px;
}

.search-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:
        translate(-50%,-50%);
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    background:
        rgba(
            37,
            208,
            198,
            .12
        );
    border:
        1px
        solid
        rgba(
            37,
            208,
            198,
            .35
        );
    font-size: 12px;
}

.search-node {
    position: absolute;
    width: 95px;
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.search-node span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
}

.search-node strong {
    font-size: 13px;
}

.search-node--seo {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.search-node--geo {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.search-node--aeo {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.search-node--aio {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================================
   SEO RESULTS DASHBOARD
============================================================ */

.search-intelligence {
    padding: 35px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );
    backdrop-filter: blur(20px);
}

.search-intelligence__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.search-intelligence__header span {
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: .18em;
}

.search-intelligence__header strong {
    color: var(--green);
    font-size: 11px;
}

.visibility-score span {
    display: block;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 12px;
    margin-bottom: 8px;
}

.visibility-score div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.visibility-score strong {
    font-size: 90px;
    line-height: .9;
    letter-spacing: -.06em;
}

.visibility-score small {
    margin-bottom: 12px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

.growth-metrics {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            1fr
        );
    gap: 12px;
    margin-top: 40px;
}

.growth-metrics div {
    padding: 18px;
    border-radius: 14px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .08
        );
}

.growth-metrics span {
    display: block;
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
    font-size: 11px;
    margin-bottom: 8px;
}

.growth-metrics strong {
    color: var(--cyan);
    font-size: 26px;
}

.search-channels {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 10px;
    margin-top: 30px;
}

.search-channels div {
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 10px;
}

.search-channels span {
    display: block;
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ============================================================
   GOOGLE BUSINESS PROFILE PAGE
============================================================ */

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

.gbp-hero {
    position: relative;
    overflow: hidden;
    padding:
        120px
        0
        130px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.gbp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        );
    background-size:
        60px
        60px;
}

.gbp-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    align-items: center;
    gap: 80px;
}

.gbp-hero__eyebrow {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.gbp-hero__title {
    max-width: 750px;
    margin-bottom: 30px;
    font-size:
        clamp(
            55px,
            6vw,
            90px
        );
    line-height: .95;
    letter-spacing: -.06em;
}

.gbp-hero__title span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gbp-hero__description {
    max-width: 600px;
    margin-bottom: 35px;
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================================
   LOCAL VISIBILITY ENGINE
============================================================ */

.local-engine {
    padding:
        35px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 24px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    backdrop-filter: blur(20px);
}

.local-engine__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.local-engine__header span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.local-engine__header strong {
    color: var(--green);
    font-size: 11px;
}

/* SCORE */

.local-score span {
    display: block;
    margin-bottom: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 12px;
}

.local-score div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.local-score strong {
    font-size: 90px;
    line-height: .9;
    letter-spacing: -.06em;
}

.local-score small {
    margin-bottom: 14px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

/* METRICS */

.local-metrics {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            1fr
        );
    gap: 12px;
    margin-top: 40px;
}

.local-metrics div {
    padding: 18px;
    border-radius: 14px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .08
        );
}

.local-metrics span {
    display: block;
    margin-bottom: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
    font-size: 11px;
}

.local-metrics strong {
    color: var(--cyan);
    font-size: 26px;
}

/* CHANNELS */

.local-channels {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 10px;
    margin-top: 30px;
}

.local-channels div {
    padding: 15px 8px;
    text-align: center;
    border-radius: 10px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    color: white;
    font-size: 11px;
}

/* ============================================================
   GBP PROCESS / LOCAL SECTIONS
============================================================ */

.gbp-section {
    padding:
        130px
        0;
}

/* ============================================================
   GBP RESPONSIVE
============================================================ */

@media(max-width:1050px) {
    .gbp-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:720px) {
    .local-metrics {
        grid-template-columns: 1fr;
    }

    .local-channels {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .local-score strong {
        font-size: 70px;
    }
}

/* ============================================================
   GOOGLE ADS PAGE
============================================================ */

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

.ads-hero {
    position: relative;
    overflow: hidden;
    padding:
        120px
        0
        130px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.ads-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        );
    background-size:
        60px
        60px;
}

.ads-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    align-items: center;
    gap: 80px;
}

.ads-hero__eyebrow {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.ads-hero__title {
    max-width: 750px;
    margin-bottom: 30px;
    font-size:
        clamp(
            55px,
            6vw,
            90px
        );
    line-height: .95;
    letter-spacing: -.06em;
}

.ads-hero__title span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.ads-hero__description {
    max-width: 600px;
    margin-bottom: 35px;
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================================
   CAMPAIGN INTELLIGENCE DASHBOARD
============================================================ */

.campaign-intelligence {
    padding: 35px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 24px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    backdrop-filter: blur(20px);
}

.campaign-intelligence__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.campaign-intelligence__header span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.campaign-intelligence__header strong {
    color: var(--green);
    font-size: 11px;
}

/* SCORE */

.campaign-score span {
    display: block;
    margin-bottom: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 12px;
}

.campaign-score div {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.campaign-score strong {
    font-size: 90px;
    line-height: .9;
    letter-spacing: -.06em;
}

.campaign-score small {
    margin-bottom: 14px;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
}

/* METRICS */

.campaign-metrics {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            1fr
        );
    gap: 12px;
    margin-top: 40px;
}

.campaign-metrics div {
    padding: 18px;
    border-radius: 14px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .08
        );
}

.campaign-metrics span {
    display: block;
    margin-bottom: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .45
        );
    font-size: 11px;
}

.campaign-metrics strong {
    color: var(--cyan);
    font-size: 26px;
}

/* CHANNELS */

.campaign-channels {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 10px;
    margin-top: 30px;
}

.campaign-channels div {
    padding: 15px 8px;
    text-align: center;
    border-radius: 10px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    color: white;
    font-size: 11px;
}

/* ============================================================
   ADS RESPONSIVE
============================================================ */

@media(max-width:1050px) {
    .ads-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:720px) {
    .campaign-metrics {
        grid-template-columns: 1fr;
    }

    .campaign-channels {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .campaign-score strong {
        font-size: 70px;
    }
}

/* ============================================================
   ABOUT PAGE
============================================================ */

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

.about-hero {
    position: relative;
    overflow: hidden;
    padding:
        120px
        0
        130px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                .025
            )
            1px,
            transparent
            1px
        );
    background-size:
        60px
        60px;
}

.about-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns:
        1fr;
}

.about-hero__eyebrow {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.about-hero__title {
    max-width: 900px;
    margin-bottom: 30px;
    font-size:
        clamp(
            60px,
            7vw,
            100px
        );
    line-height: .95;
    letter-spacing: -.065em;
}

.about-hero__title span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--cyan)
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about-hero__description {
    max-width: 650px;
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================================
   ABOUT SIGNAL SECTION
============================================================ */

.about-signal {
    padding:
        140px
        0;
    background: #06111f;
    color: white;
}

.about-signal-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    border-top:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.about-signal-grid article {
    min-height: 270px;
    padding: 35px;
    border-right:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
    border-bottom:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.about-signal-grid article:last-child {
    border-right: 0;
}

.about-signal-grid span {
    display: block;
    margin-bottom: 70px;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.about-signal-grid h3 {
    margin-bottom: 12px;
    color: white;
    font-size: 28px;
}

.about-signal-grid p {
    margin: 0;
    color:
        rgba(
            255,
            255,
            255,
            .5
        );
    font-size: 14px;
}

/* ============================================================
   ABOUT PROCESS
============================================================ */

.about-process {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 20px;
}

.about-process article {
    min-height: 280px;
    padding: 32px;
    border:
        1px
        solid
        var(--border);
    border-radius: 18px;
    background: white;
}

.about-process span {
    display: block;
    margin-bottom: 65px;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.about-process h3 {
    margin-bottom: 12px;
    font-size: 26px;
    letter-spacing: -.03em;
}

.about-process p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   ABOUT RESPONSIVE
============================================================ */

@media(max-width:1050px) {
    .about-signal-grid,
    .about-process {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }
}

@media(max-width:720px) {
    .about-signal-grid,
    .about-process {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CONTACT PAGE
============================================================ */

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

.contact-hero {
    position: relative;
    overflow: hidden;
    padding:
        120px
        0
        130px;
    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2444
        );
    color: white;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns:
        1fr
        .9fr;
    align-items: center;
    gap: 90px;
}

.contact-hero__eyebrow {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.contact-hero__title {
    max-width: 700px;
    margin-bottom: 30px;
    font-size:
        clamp(
            55px,
            6vw,
            90px
        );
    line-height: .95;
    letter-spacing: -.06em;
}

.contact-hero__description {
    max-width: 600px;
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================================
   CONTACT BENEFITS
============================================================ */

.contact-benefits {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            1fr
        );
    gap: 15px;
    margin-top: 50px;
}

.contact-benefits div {
    padding: 20px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .12
        );
    border-radius: 14px;
    background:
        rgba(
            255,
            255,
            255,
            .04
        );
}

.contact-benefits strong {
    display: block;
    margin-bottom: 12px;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 18px;
}

.contact-benefits span {
    color:
        rgba(
            255,
            255,
            255,
            .55
        );
    font-size: 12px;
}

/* ============================================================
   CONTACT FORM
============================================================ */

.contact-form {
    padding: 40px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 24px;
    background:
        rgba(
            255,
            255,
            255,
            .05
        );
    backdrop-filter: blur(20px);
}

.contact-form__header {
    margin-bottom: 35px;
}

.contact-form__header span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.contact-form__header h2 {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 32px;
}

/* ============================================================
   FORM ELEMENTS
============================================================ */

.form-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            1fr
        );
    gap: 18px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color:
        rgba(
            255,
            255,
            255,
            .65
        );
    font-size: 12px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border:
        1px
        solid
        rgba(
            255,
            255,
            255,
            .15
        );
    border-radius: 10px;
    background:
        rgba(
            255,
            255,
            255,
            .06
        );
    color: white;
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--cyan);
}

.form-group select option {
    color: black;
}

/* =========================================================
   HOME APPROACH SECTION GRAPHICS
========================================================= */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.12);
}

.approach-card {
    position: relative;
    min-height: 270px;
    padding: 34px 34px 38px;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(7, 18, 41, 0.18) 0%, rgba(8, 20, 46, 0.34) 100%);
    transition: background 0.3s ease, transform 0.3s ease;
}

.approach-card:hover {
    background: linear-gradient(180deg, rgba(8, 29, 66, 0.36) 0%, rgba(8, 24, 52, 0.56) 100%);
    transform: translateY(-4px);
}

.approach-card__visual {
    position: relative;
    width: 78px;
    height: 78px;
    margin-bottom: 34px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.approach-card__visual svg {
    width: 78px;
    height: 78px;
}

.approach-card__step {
    position: absolute;
    top: -8px;
    left: -2px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #27e0ff;
    opacity: 0.95;
}

.approach-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.approach-card p {
    margin: 0;
    max-width: 20ch;
    color: rgba(255,255,255,0.68);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* visual variations */

.approach-card__visual--understand,
.approach-card__visual--build,
.approach-card__visual--measure,
.approach-card__visual--improve {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.approach-card__visual--understand {
    background: radial-gradient(circle at 30% 30%, rgba(39, 224, 255, 0.12), transparent 60%), rgba(255,255,255,0.03);
}

.approach-card__visual--build {
    background: radial-gradient(circle at 30% 30%, rgba(73, 124, 255, 0.14), transparent 60%), rgba(255,255,255,0.03);
}

.approach-card__visual--measure {
    background: radial-gradient(circle at 30% 30%, rgba(54, 211, 153, 0.14), transparent 60%), rgba(255,255,255,0.03);
}

.approach-card__visual--improve {
    background: radial-gradient(circle at 30% 30%, rgba(122, 92, 255, 0.14), transparent 60%), rgba(255,255,255,0.03);
}

/* svg styles */

.approach-graphic-ring {
    fill: none;
    stroke: rgba(255,255,255,0.30);
    stroke-width: 6;
}

.approach-graphic-line {
    stroke: #27e0ff;
    stroke-width: 6;
    stroke-linecap: round;
}

.approach-graphic-dot {
    fill: #27e0ff;
}

.approach-graphic-frame {
    fill: rgba(255,255,255,0.07);
    stroke: rgba(255,255,255,0.18);
    stroke-width: 1.5;
}

.approach-graphic-fill {
    fill: #4a84ff;
}

.approach-graphic-soft {
    fill: rgba(255,255,255,0.22);
}

.approach-graphic-bar {
    fill: rgba(255,255,255,0.24);
}

.approach-graphic-bar--strong {
    fill: #27e0ff;
}

.approach-graphic-trend {
    fill: none;
    stroke: #27e0ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.approach-graphic-arc {
    fill: none;
    stroke: #27e0ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.approach-graphic-arc--soft {
    stroke: rgba(255,255,255,0.48);
}

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

@media (max-width: 767px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        min-height: auto;
        padding: 28px 24px 30px;
    }

    .approach-card h3 {
        font-size: 1.65rem;
    }

    .approach-card p {
        max-width: 100%;
        font-size: 0.98rem;
    }
}

/* ============================================================
   GROWTH SIGNAL CARD GRAPHICS
============================================================ */

.signal-metrics {

    display:grid;

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

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

}


.signal-card {

    min-height:330px;

    padding:30px;

    background:white;

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

}


.signal-card:last-child {

    border-right:0;

}




/* VISUAL */

.signal-card__visual {

    width:78px;

    height:78px;

    display:grid;

    place-items:center;

    margin-bottom:24px;

    border:
        1px
        solid
        rgba(
            52,
            120,
            246,
            .18
        );

    border-radius:18px;

    background:
        linear-gradient(
            145deg,
            rgba(
                52,
                120,
                246,
                .06
            ),
            rgba(
                37,
                208,
                198,
                .03
            )
        );

}


.signal-card__visual svg {

    width:70px;

    height:70px;

}




/* STEP */

.signal-card__step {

    display:block;

    margin-bottom:32px;

    color:var(--blue);

    font-family:var(--font-mono);

    font-size:18px;

    font-weight:600;

}




/* TEXT */

.signal-card strong {

    display:block;

    margin-bottom:12px;

    color:var(--text);

    font-size:22px;

    font-weight:600;

}


.signal-card p {

    max-width:210px;

    margin:0;

    color:var(--text-muted);

    font-size:14px;

    line-height:1.7;

}




/* ============================================================
   SIGNAL ICON STYLES
============================================================ */

.signal-icon-stroke {

    fill:none;

    stroke:var(--blue);

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

}


.signal-icon-fill {

    fill:var(--blue);

}


.signal-icon-frame {

    fill:
        rgba(
            52,
            120,
            246,
            .04
        );

    stroke:var(--blue);

    stroke-width:2.5;

}


.signal-icon-trend {

    fill:none;

    stroke:var(--cyan);

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

}


.signal-icon-soft {

    stroke:
        rgba(
            52,
            120,
            246,
            .45
        );

    stroke-width:3;

    stroke-linecap:round;

}


.signal-icon-badge {

    fill:var(--blue);

}


.signal-icon-check {

    fill:none;

    stroke:white;

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

}




/* ============================================================
   SIGNAL CARD HOVER
============================================================ */

.signal-card {

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);

}


.signal-card:hover {

    position:relative;

    z-index:2;

    transform:translateY(-5px);

    background:
        linear-gradient(
            180deg,
            white,
            #f8fbff
        );

    box-shadow:
        0
        20px
        45px
        rgba(
            13,
            36,
            68,
            .08
        );

}




/* ============================================================
   RESPONSIVE
============================================================ */

@media(max-width:1050px){

    .signal-metrics {

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

    }

}


@media(max-width:720px){

    .signal-metrics {

        grid-template-columns:1fr;

    }


    .signal-card {

        min-height:auto;

    }

}

/* =========================================================
   HOMEPAGE SERVICE CARD GRAPHICS
========================================================= */

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 430px;
    padding: 28px;
    border: 1px solid rgba(21, 40, 82, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,255,0.92) 100%);
    box-shadow: 0 18px 60px rgba(8, 20, 48, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(8, 20, 48, 0.10);
    border-color: rgba(47, 109, 246, 0.24);
}

.service-card__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 150px;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(76, 145, 255, 0.20), transparent 50%),
        linear-gradient(135deg, rgba(12, 25, 55, 1) 0%, rgba(11, 36, 84, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card__visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-card__visual-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    right: -10px;
    top: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 215, 255, 0.28) 0%, rgba(72, 215, 255, 0) 70%);
    pointer-events: none;
}

.service-card__badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

/* Color variations per card */

.service-card__visual--web {
    background:
        radial-gradient(circle at top left, rgba(82, 130, 255, 0.26), transparent 52%),
        linear-gradient(135deg, #07142f 0%, #0c2e67 100%);
}

.service-card__visual--seo {
    background:
        radial-gradient(circle at top left, rgba(76, 220, 255, 0.24), transparent 52%),
        linear-gradient(135deg, #07142f 0%, #0a2d5d 100%);
}

.service-card__visual--gbp {
    background:
        radial-gradient(circle at top left, rgba(67, 240, 181, 0.22), transparent 52%),
        linear-gradient(135deg, #07142f 0%, #0b3159 100%);
}

.service-card__visual--ads {
    background:
        radial-gradient(circle at top left, rgba(103, 141, 255, 0.24), transparent 52%),
        linear-gradient(135deg, #08142d 0%, #132f63 100%);
}

/* SVG styling */

.graphic-frame {
    fill: rgba(255,255,255,0.08);
    stroke: rgba(255,255,255,0.18);
    stroke-width: 1.5;
}

.graphic-line {
    fill: rgba(255,255,255,0.22);
}

.graphic-line--strong {
    fill: #47d5ff;
}

.graphic-button {
    fill: #2f6df6;
}

.graphic-ring {
    fill: none;
    stroke: rgba(255,255,255,0.28);
    stroke-width: 7;
}

.graphic-stroke {
    stroke: rgba(255,255,255,0.40);
    stroke-width: 6;
    stroke-linecap: round;
}

.graphic-dot {
    fill: #47d5ff;
}

.graphic-trend {
    fill: none;
    stroke: #47d5ff;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.graphic-pin {
    fill: #2f6df6;
}

.graphic-pin-center {
    fill: #ffffff;
}

.graphic-bar {
    fill: rgba(255,255,255,0.25);
}

.graphic-bar--strong {
    fill: #47d5ff;
}

/* Existing content cleanup */

.service-card__label {
    display: inline-block;
    margin-bottom: 14px;
    color: #2f6df6;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 14px;
    max-width: 14ch;
    color: #0f172a;
    font-size: clamp(2rem, 2.3vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.service-card p {
    max-width: 38ch;
    margin: 0;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.7;
}

.service-card a {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.service-card:hover a {
    gap: 12px;
    color: #2f6df6;
}

@media (max-width: 767px) {
    .service-card {
        min-height: auto;
        padding: 22px;
    }

    .service-card__visual {
        height: 128px;
        margin-bottom: 22px;
    }

    .service-card h3 {
        max-width: 100%;
        font-size: 2.1rem;
    }

    .service-card p {
        font-size: 0.96rem;
    }
}

/* ============================================================
   CONTACT TRUST
============================================================ */

.contact-trust {
    padding:
        130px
        0;
}

.contact-trust-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            1fr
        );
    gap: 20px;
}

.contact-trust-grid article {
    padding: 35px;
    border:
        1px
        solid
        var(--border);
    border-radius: 18px;
    background: white;
}

.contact-trust-grid span {
    display: block;
    margin-bottom: 50px;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
}

.contact-trust-grid h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.contact-trust-grid p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================================
   CONTACT RESPONSIVE
============================================================ */

@media(max-width:1050px) {
    .contact-hero__grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:720px) {
    .contact-benefits,
    .contact-trust-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}