*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*::selection {
    background-color: var(--orange);
    color: var(--white);
}
:root {
    --navy: #0d1b2a;
    --navy-mid: #1a2f47;
    --navy-light: #1e3a5f;
    --blue: #1e6fd9;
    --blue-light: #3a8ff0;
    --orange: #ff6d00;
    --orange-light: #f59540;
    --silver: #8fa8c4;
    --off-black: #f4f6f9;
    --black: #000;
    --white: #fff;
    --text-muted: #7a95b0;
}
html {
    scroll-behavior: smooth;
}
html, body {
	overflow-x: hidden;
}
body {
    font-family: 'Barlow', sans-serif;
    color: var(--black);
    padding-top: 110px;
}
/* ── NAV ── */
header * {
    transition: .3s ease-in-out;
}
header {
    background: var(--white);
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    transition: .3s ease-in-out;
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 999;
}
.header.sticky {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
    padding: 10px 0;
}
.header.sticky .logo-text {
    height: 70px;
}
header .logo-text img {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}
header .logo-text {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container {
    max-width: 1500px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}
.hero-content div,
.hero-content h1,
.hero-content p {
    text-align: center;
    justify-content: center;
    max-width: unset;
}
nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
}
.header.sticky nav ul {
    gap: 20px;
}
nav ul a {
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
}
.header.sticky nav ul a {
    font-size: 0.8rem;
}
nav ul a:hover {
    color: var(--blue);
}
nav .cta-btn {
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0px 20px;
    line-height: 50px;
    text-decoration: none;
}
nav .cta-btn:hover {
    background: var(--blue);
}
.header.sticky .cta-btn {
    font-size: 13px;
    padding: 0px 15px;
    line-height: 40px;
}
/* ── HERO ── */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 205px 0px;
    justify-content: center;
}
/* Diagonal accent stripe */
.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(160deg, rgba(30, 111, 217, 0.07) 0%, rgba(232, 119, 34, 0.04) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--orange);
}
.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 7vw, 6rem);
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 28px;
}
.hero h1 .accent {
    color: var(--orange);
}
.hero h1 .blue-line {
    color: var(--blue-light);
}
.hero p {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--black);
    margin-bottom: 44px;
    font-family: "Figtree", sans-serif;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-actions a.btn-outline {
    color: var(--black);
    border-color: #000;
}
.hero-content .btn-primary {
    color: var(--white);
}
.hero-actions a.btn-outline:hover {
    background: #000;
    color: var(--white);
}
.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--black);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}
.btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
}
.hero-logo {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: min(400px, 38vw);
    opacity: 0.9;
}
/* Stats bar */
.stats-bar {
    position: relative;
    z-index: 10;
    border-top: 1px solid #00000036;
    border-bottom: 1px solid #00000036;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 36px 40px;
    border-right: 1px solid #00000036;
    text-align: center;
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-family: "Figtree", sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
/* ── SECTION BASE ── */
section {
    padding: 100px 0px;
}
.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    text-transform: uppercase;
    line-height: 1;
    color: var(--black);
    margin-bottom: 20px;
}
.section-title .accent {
    color: var(--blue-light);
}
.section-sub {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
/* ── ABOUT ── */
#about {
    position: relative;
}
#about .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 0 auto;
}
#about .about-visual {
    position: relative;
}
#about .about-box {
    background: #f2f2f28a;
    padding: 48px;
    position: relative;
}
#about .about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: var(--orange);
}
#about .about-box p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--black);
    margin-bottom: 20px;
    font-family: "Figtree", sans-serif;
}
#about .about-box p:last-child {
    margin-bottom: 0;
}
#about .about-box strong {
    color: var(--black);
    font-weight: 600;
}
.accent-card {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8e37 100%);
    padding: 32px;
    margin-top: 20px;
}
.accent-card p {
    font-weight: 700;
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Figtree", sans-serif;
}
/* ── SERVICES ── */
#services .services-header {
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}
.services-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.service-card {
    padding: 44px 36px;
    border-top: 3px solid transparent;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
    background: #f2f2f28a;
}
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 119, 34, 0.12);
    border: 1px solid rgba(232, 119, 34, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
}
.service-card:hover {
    border-color: var(--orange);
}
.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 14px;
}
.service-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
#services .section-title {
    color: var(--black);
}
#services .section-sub {
    color: var(--black);
    padding-left: 40px;
    max-width: 770px;
}
/* ── HOW WE WORK ── */
#process .process-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    position: relative;
}
.step:last-child {
    border-bottom: none;
}
.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: rgba(232, 119, 34, 0.2);
    line-height: 1;
    min-width: 52px;
    transition: color 0.3s;
}
.step:hover .step-num {
    color: var(--orange);
}
.step-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 8px;
}
.step-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: "Figtree", sans-serif;
}
.process-visual {
    background: #f2f2f28a;
    padding: 52px;
}
.process-visual h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.1;
}
.process-visual p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 20px;
    font-family: "Figtree", sans-serif;
    font-weight: 500;
}
.capability-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cap-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
.cap-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    flex-shrink: 0;
}
/* ── CLIENTS ── */
#clients .clients-inner {
    margin: 0 auto;
}
#clients .clients-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.client-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
    background: #f2f2f28a;
}
.client-card:hover {
    border-color: rgba(232, 119, 34, 0.4);
}
.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
}
.client-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
}
.client-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
.client-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
.florida-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 111, 217, 0.1);
    border: 1px solid rgba(30, 111, 217, 0.25);
    padding: 12px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-light);
}
.florida-badge span {
    font-size: 1.2rem;
}
/* ── WHY RELENTLESS ── */
#why {
    position: relative;
    overflow: hidden;
}
#why::before {
    content: 'R';
    position: absolute;
    right: -60px;
    top: -80px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 40rem;
    color: #00000005;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
#why .why-inner {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#why .why-header {
    text-align: center;
    margin-bottom: 64px;
}
#why .why-header .section-tag {
    justify-content: center;
}
#why .why-header .section-tag::before {
    display: none;
}
#why .why-header .section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
}
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.pillar {
    background: #f2f2f28a;
    padding: 40px 28px;
    text-align: center;
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}
.pillar:hover {
    border-color: var(--orange);
}
.pillar-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}
.pillar h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 12px;
}
.pillar p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
/* ── CONTACT ── */
#contact {
    position: relative;
}
#contact .contact-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--black);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-block h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.contact-block p {
    font-size: 0.95rem;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
.contact-block a {
    color: inherit;
    text-decoration: underline;
    transition: .3s ease-in-out;
}
.contact-block a:hover {
    color: var(--blue-light);
}
.contact-block a:hover {
    text-decoration: underline;
}
.contact-info .contact-block {
    position: relative;
    padding-left: 50px;
}
.contact-info .contact-block::before {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
    font-family: fontawesome;
    content: "\f0ac";
    height: 40px;
    width: 40px;
    background-color: var(--orange);
    text-align: center;
    line-height: 200%;
    font-size: 20px;
    color: var(--white);
}
.contact-info .contact-block.contact-email::before {
    content: "\f003";
}
.contact-info .contact-block.contact-marketfocus::before {
    content: "\f041";
}
.contact-info .contact-block.contact-entity::before {
    content: "\f0f7";
}
section#contact {
    padding-bottom: 0;
}
/* ── FOOTER ── */
footer {
    background: #f2f2f28a;
    padding: 40px 0px;
}
.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--black);
}
.footer-brand span {
    color: var(--orange);
}
footer p {
    font-size: 1rem;
    color: var(--black);
    font-family: "Figtree", sans-serif;
}
footer nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}
footer nav a {
    font-size: 0.82rem;
    color: var(--black);
    text-decoration: none;
}
footer nav a:hover {
    color: var(--blue);
}
footer .footer-logo a {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .footer-logo a img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
footer>div.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
footer p a {
    color: inherit;
}
footer p a:hover {
    color: var(--orange);
}
body.error404 > .container {
	padding-top: 150px;
	padding-bottom: 120px;
    text-align: center;
    flex: 1;
}
body.error404 > .container .section-title .accent {
	color: var(--orange);
}
body.error404 > .container .section-title {
	font-size: 130px;
	line-height: 120%;
	margin-bottom: 0;
}
body.error404 > .container h6 {
	font-size: 21px;
	margin: 10px 0;
	font-family: "Figtree", sans-serif;
	font-weight: 500;
	color: var(--orange);
}
body.error404 > .container p {
	font-family: "Figtree", sans-serif;
	margin-bottom: 40px;
}
body.error404 > .container .btn-primary {
	color: var(--white);
}
html, body {
	height: 100%;
	display: flex;
	flex-direction: column;
}
/* ── RESPONSIVE ── */
@media only screen and (max-width: 1199px) {
    .hero {
        min-height: 500px;
        padding: 100px 0px;
    }
    nav ul {
        gap: 15px;
    }
    .stat-number {
        font-size: 2.1rem;
    }
    section {
        padding: 70px 0px;
    }
    #about .about-inner {
        grid-template-columns: 38% 1fr;
        gap: 40px;
        align-items: flex-start;
    }
    #about .about-box {
        padding: 35px;
    }
    #about .about-box p {
        font-size: 1rem;
    }
    .accent-card p {
        font-size: 1.15rem;
    }
    .accent-card {
        padding: 25px;
    }
    .section-sub {
        font-size: 1rem;
    }
    #clients .clients-header {
        gap: 30px;
    }
    #process .process-inner {
        gap: 40px;
    }
    .client-card {
        padding: 30px 26px;
    }
    .clients-grid {
        margin-bottom: 30px;
    }
    #why .why-header {
        margin-bottom: 43px;
    }
    .pillar {
        padding: 30px 20px;
    }
    #contact .contact-inner {
        grid-template-columns: 33% 1fr;
        gap: 40px;
    }
    footer .footer-logo a {
        height: 80px;
    }
    footer p {
        font-size: 0.9rem;
    }
    footer nav a {
        font-size: 0.7rem;
    }
}
@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 1023px) {
    .stat-number {
	font-size: 1.8rem;
}
.stat-item {
	padding: 20px;
}
.stat-label {
	font-size: 0.7rem;
}
.hero p {
	font-size: 1rem;
}
header .logo-text {
	height: 70px;
}
nav ul a {
	font-size: 0.8rem;
}
nav .cta-btn {
	font-size: 13px;
	padding: 0px 20px;
	line-height: 40px;
}
body {
	padding-top: 100px;
}
.header.sticky nav ul {
	gap: 15px;
}
#about .about-inner {
	gap: 20px;
}
.section-sub {
	font-size: 0.95rem;
	line-height: 1.6;
}
#about .about-box {
	padding: 25px;
}
#about .about-box p {
	font-size: 0.95rem;
    margin-bottom: 10px;
}
.accent-card p {
	font-size: 1rem;
}
section {
	padding: 60px 0px;
}
#services .section-sub {
	padding-left: 20px;
	max-width: 500px;
}
.services-grid {
	grid-template-columns: repeat(2, 1fr);
}
.service-card {
	padding: 30px;
}
.service-icon {
	width: 45px;
	height: 45px;
}
.service-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.service-card p {
	line-height: 1.55;
}
.step {
	gap: 0px;
	padding: 20px 0;
}
.process-visual {
	padding: 30px;
}
.step-num {
	font-size: 2.1rem;
}
.step-content h4 {
	font-size: 1.1rem;
}
.step-content p {
	line-height: 1.5;
}
.clients-grid {
	gap: 20px;
}
.client-desc {
	line-height: 1.55;
}
.client-name {
	font-size: 1.2rem;
}
.client-card {
	padding: 25px;
}
.pillars {
	grid-template-columns: repeat(2, 1fr);
}
#contact .contact-inner {
	grid-template-columns: 32% 1fr;
	gap: 20px;
}
footer > div.container > nav {
	width: 100%;
}
footer nav ul {
	justify-content: center;
}
footer nav a {
	font-size: 0.8rem;
}
footer {
	padding: 20px 0px;
}
}
@media only screen and (max-width: 767px) {
    header .container nav {
	flex-wrap: wrap;
    gap: 10px;
}
header .container nav ul {
	order: 3;
    gap: 0;
	justify-content: center;
	width: 100%;
}
header .container nav ul li:not(:last-of-type) {
	margin-right: 10px;
}
#process .process-inner {
	grid-template-columns: repeat(1,1fr);
	gap: 40px;
}
header {
	max-width: unset;
}
nav .cta-btn {
	font-size: 11px;
	padding: 0px 14px;
	line-height: 35px;
}
.header.sticky nav ul {
	gap: 0;
}
.header.sticky .cta-btn {
	font-size: 11px;
	padding: 0px 14px;
	line-height: 35px;
}
.header.sticky .logo-text {
	height: 60px;
}
body {
	padding-top: 128px;
}
.hero-eyebrow::before {
	width: 30px;
}
.hero-content div.hero-eyebrow {
	text-align: center;
	letter-spacing: 1.1px;
	width: fit-content;
	margin: 0 auto;
	gap: 10px;
	margin-bottom: 10px;
}
.hero p {
	font-size: 0.95rem;
	line-height: 1.55;
    margin-bottom: 20px;
}
.hero h1 {
	margin-bottom: 18px;
}
.btn-primary,
.btn-outline {
	font-size: 0.9rem;
	padding: 10px 20px;
}
.hero-actions {
	gap: 10px;
}
.stats-bar {
	grid-template-columns: repeat(2, 1fr);
}
.stat-item {
	border-bottom: 1px solid #00000036;
    padding: 18px;
}
.stats-bar {
	border-bottom: 0;
}
#about .about-inner,
.services-grid,
#clients .clients-header,
.clients-grid,
.pillars,
#contact .contact-inner {
	grid-template-columns: repeat(1, 1fr);
}
#about .about-box {
	padding: 20px;
}
.accent-card {
	padding: 20px;
}
.section {
    scroll-margin-top: 90px;
	padding: 40px 0px;
}
#services .services-header {
	margin: 0 auto 30px;
	gap: 0px;
	flex-wrap: wrap;
}
#services .services-header > div {
	width: 100%;
}
#services .section-sub {
	padding-left: 0;
	max-width: unset;
}
.process-visual h3 {
	font-size: 1.5rem;
}
.process-visual p {
	font-size: 0.95rem;
}
.capability-list {
	margin-top: 0;
    gap: 10px;
}
#clients .clients-header {
	gap: 0;
}
#contact .contact-inner {
	gap: 30px;
}
.contact-info {
	gap: 20px;
}
body.error404 > .container {
	padding-top: 60px;
	padding-bottom: 60px;
}
body.error404 > .container .section-title {
	font-size: 63px;
}
body.error404 > .container h6 {
	font-size: 16px;
}
body.error404 > .container p {
	margin-bottom: 20px;
}
}
@media only screen and (min-width: 580px) and (max-width: 767px) {
    .services-grid,
     .clients-grid,
     .pillars {
	grid-template-columns: repeat(2, 1fr);
}
}
/* font-family: "Figtree", sans-serif;
font-family: "Barlow Condensed", sans-serif; */