@charset "UTF-8";

/*
Theme Name: Phrasing
Author: Brandon Foster
Description: A lightweight, custom-built theme for Phrasing LLC
Version: 1.0
*/


:root {
    --blue: #3B8A90;
    --light-blue: #76CBC9;
    --phrasing-black: #2A2A2A;
    --off-black: #231f20;
    --off-white: #FCFCFC;
    --grey: #414141;
    --spacing-large: clamp(5rem, 4vw + 2rem, 7.5rem);
	--grey-background: #f7f7f7;
}

img {
	max-width: 100%;
	overflow-x: hidden;
}

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

/* --- AQUILONE --- */
@font-face {
    font-family: 'Aquilone';
    src: url('assets/fonts/Aquilone-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aquilone';
    src: url('assets/fonts/Aquilone-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aquilone';
    src: url('assets/fonts/Aquilone-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* --- DM SANS --- */
@font-face {
    font-family: 'DM Sans';
    src: url('assets/fonts/DMSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('assets/fonts/DMSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
	font-family:"DM Sans",sans-serif;
}

body.single h1 strong, body.single h1 b,
body.single h2 strong, body.single h2 b,
body.single h3 strong, body.single h3 b,
body.single h4 strong, body.single h4 b,
body.single h5 strong, body.single h5 b,
body.single h6 strong, body.single h6 b {
  font-weight: 400;
}

h1 {
    font-family: "aquilone";
	font-size: clamp(4rem, 3.5rem + 2vw, 5rem);
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 88px */
	letter-spacing: -0.1rem;
    text-transform: uppercase;
}

h2 {
    font-family: "aquilone", sans-serif;
    font-size: clamp(2.625rem, 2.215rem + 2.045vw, 3.75rem);
    font-weight: 400;
    line-height: 110%; /* 2.8875rem */
    letter-spacing: -0.0525rem;
}

h3 {
    color: #231f20;
    font-family: "aquilone", sans-serif;
}

p, 
li,
.schema-faq-question {
    font-family:"DM Sans",sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
    font-size: clamp(1rem, 1.56vw, 1.125rem);
	color: var(--grey);
} 

.entry-content li {
	padding-bottom: 0.5rem;
}

.content li {
    margin-top: 0.5rem;
}

#home-sticky p {
    font-size: 1.125rem;
}

h4 {
    color: var(--blue);
    font-family: 'Aquilone';
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 1.8rem */
    letter-spacing: -0.03rem;
    text-transform: uppercase;
}

h5 {
  	color: black;
  	text-align: left;
  	font-family:"DM Sans",sans-serif;
	font-size: 1.25rem;
  	margin-bottom: 0;
  	font-weight: 400;
  	text-transform: uppercase;
}

p a {
	color: var(--blue);
	text-decoration: none;
}

button,
.button,
.header-button,
.hero-cta,
.wpcf7 input[type="submit"]{
	display: inline-block;
  	padding: 1.25rem 1.9rem 1.1rem;
	border-radius: 3.75rem;
	background: #76CBC9;
  	font-family: "DM Sans";
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
  	letter-spacing: 0.05rem;
	text-transform: uppercase;
  	line-height: 0.9;
  	color: #121212;
  	text-decoration: none;
	width: fit-content;
}

.site-header {
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
}

.header-container {
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.header-right {
    flex: 1;
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.header-left img {
	width: 11rem;
	height: auto;
}

.header-center {
    display: flex;
    justify-content: center;
}

.main-navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-navigation li a {
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
	color: #121212;
	font-size: 1rem;
	letter-spacing: 0.04688rem;
}

.main-navigation li {
	line-height: 0;
}


@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: 1fr 1fr; 
    }
    .header-center {
        display: none;
    }
}


.mobile-bottom-nav {
    display: none;
}

@media (max-width: 800px) {

    /* Hide desktop header elements by default */
    .header-right {
        display: none !important;
    }

    .header-center {
        display: none;
    }

    .header-center.is-active {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: calc(100vh - 75px); 
        background: var(--off-black);
        z-index: 999998;
        padding: 2rem;
        box-sizing: border-box;
        overflow-y: auto;
    }

    /* Lock scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
	
	.main-navigation li a {
		color: white;
		font-size: 2rem;
	}

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        top: auto; 
        left: 0;
        width: 100vw;
        height: 75px;
        background: var(--off-black);
        z-index: 9999999;
        margin-bottom: 0;
        transform: translateZ(0);
        align-items: center;
		box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.15);
    }

    .mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #ffffff;
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 400;
        gap: 5px;
        font-family: "Aquilone", sans-serif;
        cursor: pointer;
    }

    .mobile-nav-item svg {
        width: 24px;
        height: 24px;
        stroke: var(--blue); 
    }

    .hamburger-icon {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-icon span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--blue);
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Optional hamburger animation when menu is open */
    body.menu-open .hamburger-icon span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    body.menu-open .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }
    body.menu-open .hamburger-icon span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    body {
        padding-bottom: 80px;
    }
	
	.header-center.is-active ul,
    .header-center.is-active .main-navigation {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 2rem; 
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .header-center.is-active ul li {
        display: block;
        width: auto;
        text-align: center;
    }
}

.site-hero {
    position: relative; 
    height: 65vh;
    overflow: hidden;
    border-radius: 1.875rem;
    margin: auto;
    width: 98%;
}

.site-hero.home-hero {
    height: calc(100vh - 155px);
}

.site-hero.is-two-column .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.site-hero.is-one-column .hero-container {
    display: block;
    text-align: left; 
	margin-top: auto;
}

.site-hero.is-one-column .hero-content-right {
	margin: 0 auto 0 0;
}

.site-hero.is-one-column .hero-content-left {
	padding: 0 0 2rem;
	max-width: 60rem;
}

.hero-title {
    margin: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: stretch;
}

.home .hero-container {
    margin: 0 auto;
    width: 90%;
	max-width: 1400px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 5rem 0;
}

.hero-container {
    margin: 0 auto;
    width: 90%;
	max-width: 1400px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 5rem 0;
}

.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.hero-img, 
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hero-content-left {
    align-self: start;
}

.hero-content-right {
    align-self: end;
    max-width: 30rem;
    margin-left: auto;
}
    
.hero-label {
    display: block;
    color: var(--blue); 
    font-weight: 700;
    letter-spacing: -0.03rem;
    margin: 0 0 2rem;
    font-size: 1.5rem;
    border-left: 2px solid var(--blue);
    padding-left: 15px;
}

.page-id-38030 .hero-label {
    display: none;
}

.hero-title {
    font-size: clamp(4rem, 5vw, 5rem);
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.hero-desc {
    color: white;
    line-height: 1.5;
    margin-bottom: 2.19rem;
    text-align: left;
}

.hero-cta {
    background: #fff;
}

.hero-cta:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .is-two-column .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 800px) {
    .site-hero.is-two-column .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
		padding: 0;
        justify-content: center;
    }
	.site-hero {
    	height: 70vh;
	}
	.hero-content-right {
		margin: 0 auto 0 0;
	}
}


/* --- LOGO SLIDER --- */

.logo-slider-section {
    background: #fff; 
}

.logo-item {
    padding: 0 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100px; /* Forces all logo areas to be the same height */
}

.logo-item img {
    max-width: 150px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#logo-slider h4 {
    text-align: center;
    color: var(--off-black);    
    margin: 0 auto 3.75rem;
}

#logo-slider {
    padding: 5rem 0;
}

.home #logo-slider {
	padding: 5rem 0 0;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}

html {
    height: 100% ;
    margin: 0;
    padding: 0;
}

.benefits-wrapper {
    position: relative;
    width: 100%;
}

.benefit-row {
    position: -webkit-sticky;
    position: sticky;
    top: 0; 
    height: 100vh;
    width: 100%;
    background: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch; 
    height: 80vh; 
    border-radius: 1.25rem;
    overflow: hidden;
}

.benefit-image-col {
    display: flex;
    padding-bottom: 1.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.benefit-img {
    width: 100%;
    height: 80vh; 
    object-fit: cover;
    border-radius: 1.25rem;
    overflow: hidden;
    display: block;
}

.benefit-content-col {
    display: flex; 
}

.benefit-content-box {
    background: #ffffff;
    padding-left: clamp(2.5rem, 3.91vw, 5rem);
    padding-right: clamp(2.5rem, 3.91vw, 5rem);
    border-radius: 1.25rem;
    border: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-label {
    display: block;
    color: var(--blue);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--blue);
    padding-left: 15px;
    font-size: clamp(1.25rem, 1.95vw, 1.5rem);
    font-family: "Aquilone", sans-serif;
}

.benefit-headline {
    font-family: "Aquilone", sans-serif;
    font-size: clamp(2.5rem, 4.1vw, 3.75rem);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.075rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: var(--off-black);
}

.benefit-description {
    font-family: 'DM Sans', sans-serif;
    color: var(--grey);
    font-size: clamp(1rem, 1.56vw, 1.25rem);
    line-height: 150%;
}

.benefit-description ul:last-of-type {
	margin-bottom: 0;
}

.benefit-buttons {
    display: flex;
    width: 100%;
	margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    background: var(--light-blue);
    color: var(--off-black);
    padding: 1.1875rem 1.875rem;
    border-radius: 3.75rem;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.05rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
}


@media (max-width: 768px) {
    
    .benefit-row {
        top: 3%;
		height: calc(100vh - 105px);
		padding-bottom: 4rem;
    }

    .benefit-container {
        width: 90%;
        margin: auto;
        height: 100% !important; 
        padding: 0;
        gap: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
    }

    .benefit-image-col {
        order: 1;
        width: 100%;
        padding-bottom: 2rem;
    }

    .benefit-content-col {
        order: 2;
        width: 100%;
        height: calc(100dvh - 47vh);
    }

    .benefit-img {
        height: 30vh;
		object-position: 50% clamp(0%, 75% - 6.25vw, 50%);
    }
	
	.benefit-img:first-of-type {
		object-position: 50% 25%;
	}

    .benefit-content-box {
        text-align: center;
        padding: 1.5rem;
    }

    .benefit-label {
        border-left: none;
        padding-left: 0;
        text-align: left;
    }

    .benefit-buttons {
        justify-content: center;
    }
    
    .benefit-description,
    .benefit-headline {
        text-align: left;
    }
    
    .btn-primary {
        width: 100%;
    }
	
	.home #logo-slider {
		padding-bottom: 5rem;
	}
}

@media (max-width: 400px) {

    .benefit-label {
        margin-bottom: 0.75rem;
    }
    
     .benefit-image-col {
        padding-bottom: 1rem;
    }
	
	 .benefit-content-box {
        padding: 1rem;
    }
}



/* --- TEAM GRID --- */
/* --- Team Grid Layout --- */


.team-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.team-grid-section {
    padding-bottom: var(--spacing-large);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; 
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-photo-wrapper {
    width: 100%;
}

.team-img {
    width: 100%;
    aspect-ratio: 4 / 5; 
    object-fit: cover;
    border-radius: 1.25rem; 
    display: block;
    max-height: 28rem;
}

.team-job-title {
    display: block;
    color: var(--blue); 
    font-family: 'DM Sans';
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.team-name {
    font-family: 'Aquilone';
    font-size: 2rem;
    font-weight: 400;
    color: black;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    margin-top: 0;
    line-height: 110%; /* 2.2rem */
    letter-spacing: -0.04rem;
}

.team-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1); 
    margin: 15px 0 20px 0;
    width: 100%;
}

.team-bio {
    font-family: 'DM Sans';
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey); 
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablets */
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 60px;
    }
    
    .team-container {
        padding: 0 20px;
    }
	
	.team-img {
		object-position: 50% 0;
	}
}


/* --- SECTION CONTAINER --- */
.why-us-section {
    background: var(--off-black);
    padding-top: var(--spacing-large);
    padding-bottom: var(--spacing-large);
    width: 100%;
    border-radius: 1.75rem;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    box-sizing: border-box;
}

.section-title {
    color: #ffffff;
    font-family: "Aquilone", sans-serif; 
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: clamp(3rem, 2.27rem + 3.64vw, 5rem);
	margin-top: 0;
    letter-spacing: -0.02em;
}

/* --- MASONRY GRID --- */
.masonry-grid {
    column-count: 3;
    column-gap: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden; 
}

.card-link-wrapper {
    display: block;          
    text-decoration: none;   
    color: inherit;         
    height: 100%;            
    transition: transform 0.3s ease;
}

.card-link-wrapper:hover {
    opacity: 0.9;
}

.feature-card {
    display: block; 
    width: 100%;
    break-inside: avoid;
    margin-bottom: 30px;
    box-sizing: border-box;
    transform: none; 
    background: var(--off-white);
    border-radius: 1.25rem;
}

/* --- CARD MEDIA --- */
.card-image-wrapper {
    margin-bottom: 1rem;
    overflow: hidden;
    padding: 1rem;
}

.card-img {
    width: 100%;
    height: 15rem;
    display: block;
    border-radius: 1.25rem;
}

.icon-circle {
    width: 100%;
    padding: 2rem 1rem 1rem;
}

.card-icon {
    width: 6rem;
    height: 6rem;
    height: auto;
    
}

/* --- CARD TEXT --- */

.feature-card .card-content {
    padding: 1rem 2rem 3rem;
}


.feature-label {
    display: block;
    color: var(--blue); 
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.card-headline {
    font-family: "Aquilone", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    margin-top: 0;
    color: #1a1a1a;
}

.card-description {
    font-family: 'DM Sans', sans-serif;
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 950px) {
    .masonry-grid {
        column-count: 2;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
	.feature-card:last-of-type {
		margin-bottom: 0;
	}
}

.logo-slider-section, 
.slick-slider, 
.slick-list {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.slick-track {
    max-width: none !important; 
}

.stats-section .stats-container {
    max-width: 1400px;
    margin: 0 auto;
	width: 90%;
    padding-top: var(--spacing-large);
    padding-bottom: var(--spacing-large);
    background: var(--off-white);
}

.stats-section .stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(2.5rem, 1.591rem + 4.545vw, 5rem);
    gap: 5rem;
}

.stats-header-left,
.stats-header-right {
    flex: 1;
}

.stats-main-title,
.stats-intro-text {
    margin: 0;
}

.stats-section .stats-grid {
    display: block; 
    column-count: 3;
    column-gap: 25px;
}

.stats-section .stats-grid .stat-card {
    break-inside: avoid; 
    margin-bottom: 25px;
    position: relative;
    border-radius: 1.875rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    aspect-ratio: auto; 
    min-height: 0;
}

.stats-section .stats-grid .card-1 {
    min-height: 700px;
}

.stats-section .stats-grid .style-image {
    height: 320px;
}

.stats-section .stats-grid .style-image .stat-card-bg,
.stats-section .stats-grid .style-image .stat-card-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.stats-section .stats-grid .style-teal {
    background-color: var(--light-blue);
}

.stats-section .stats-grid .stat-card-content {
    position: relative;
    z-index: 2;
    padding: 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.stats-section .stats-grid .style-image .stat-card-content {
    display: none;
}

.stats-section .stats-grid .stat-number {
    font-family: "Aquilone", sans-serif;
    font-size: 5.75rem;
    line-height: 1;
    color: #000;
	margin-bottom: 1rem;
}

.stats-section .stats-grid .stat-headline {
    text-transform: uppercase;
    font-family: "Aquilone", sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    margin: 0.5rem 0 0;
}

.stats-section .stats-grid .stat-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
	margin: 0.5rem 0 0;
}

.stats-section .stats-grid .card-3 {
    min-height: 350px;
}

@media (max-width: 1100px) {
    .stats-section .stats-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .stats-section .stats-grid {
        column-count: 1;
    }
    .stats-section .stats-grid .card-1 {
        min-height: 350px;
    }
	.stats-section .stats-header {
		flex-direction: column;
		gap: 1rem;
	}
}



.ticker-bar {
    background: var(--off-black);
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    display: flex;
	max-width: 100%;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-loop 8s linear infinite;
	min-width: 0;
}

.ticker-set {
    display: flex;
}

.ticker-item {
    color: #fff;
    font-family: "Aquilone", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding-left: 3.75rem; 
    letter-spacing: 0.02em;
}

.ticker-arrow {
    width: 2.2rem;   
    height: 2.2rem;
    margin-left: 3.75rem;
    display: block;
    flex-shrink: 0;
}

@keyframes ticker-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .ticker-item {
        font-size: 2rem;
    }
    .ticker-arrow {
        width: 18px;
        height: 18px;
    }
}


/* --- FAQ --- */
.faq-section {
    border-bottom: 1px solid var(--border-border-subtle, #E7E7E7);
    background: #F7F7F7;
    padding-top: var(--spacing-large);
    padding-bottom: var(--spacing-large);
}

.faq-container {
    width: 70%;
    margin: auto;
	max-width: 1000px;
}

.faq-header-left,
.faq-header-right {
    text-align: center;
}

.faq-main-title {
    margin: 0;
}

.faq-intro-text {
    margin-bottom: 3.75rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 1.25rem;
}

.faq-question {
    font-family: "DM Sans";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 2.25rem */
    color: var(--off-black);
    display: flex;
    list-style: none;
    justify-content: space-between;
	gap: 0.5rem;
}

.faq-answer-content {
    padding-top: 1.5rem;
    font-family: "DM Sans";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.6875rem */
    color: var(--grey);
    width: 90%;
}

/* --- Toggle Icon --- */
.faq-question::marker {
    display: none !important;
}

.faq-toggle-icon::before {
    content: '+';
    font-size: 2rem;
    font-family: sans-serif;
}

.faq-item[open] .faq-toggle-icon::before {
    content: '−';
}

.faq-toggle-icon:hover {
  	cursor: pointer;
}

.faq-question:hover {
  	cursor: pointer;
}

/* --- Pricing --- */
/* Container sizing */
.three-column-wrapper {
    padding-top: var(--spacing-large);
	padding-bottom: var(--spacing-large);
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
	width: 90%;
}

.case-study-container {
    margin: 0 auto;
	width: 98%;
}

.landing-container, 
.service-container,
.case-study-container,
.article-container {
    max-width: 1200px;
    margin: 0 auto;
	width: 85%;
}


@media (max-width: 768px) {
	.landing-container, 
	.service-container, 
	.case-study-container,
	.article-container {
		max-width: 1200px;
		margin: 0 auto;
		width: 90%;
	}
	.faq-question {
		font-size: 1.25rem;
	}
	.faq-container {
		width: 90%;
	}
	.case-study-objectives-section .case-study-container{
		grid-template-columns: 1fr !important;
	}
}

.three-column-wrapper .container {
    max-width: 1400px;
    margin: 0 auto;
	width: 90%;
}

/* Three Column Grid */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-image-wrap {
  width: 100%;
  height: 15rem;   overflow: hidden;
  border-radius: 1.875rem; 
  margin-bottom: 2rem;
}

.column-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.column-card {
    background: var(--light-blue);
    padding: 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
	border-radius: 1.875rem;
}

.column-title {
    font-size: 2rem;
    color: #000;
	margin: 1rem 0;
	padding: 0 1rem;
}

.column-subtitle {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: #414141;
	padding: 0 1rem;
}

.column-description {
    margin-bottom: 25px;
    flex-grow: 1;
    font-family:"DM Sans",sans-serif;
	padding: 0 1rem 1rem;
	color: var(--grey);
	font-size: 1rem;
	line-height: 150%;
}

.column-button-wrap {
    margin-top: auto;
	padding: 0 1rem;
}

.column-button-wrap .button {
	background: white;
}


/* Responsive Breakpoint for Tablets and Mobile */
@media (max-width: 992px) {
    .three-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .three-column-grid {
        grid-template-columns: 1fr;
    }
}


.four-column-wrapper .container {
    max-width: 1400px;
    margin: 0 auto;
	width: 90%;
}

/* Four Column Grid */
.four-column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-wrapper {
	background: var(--grey-background);
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 5rem; 
    width: 100%;
    margin: 0 auto;
    padding: 3.75rem 4rem;
    box-sizing: border-box;
	background: var(--off-black);
	border-radius: 1.875rem 1.875rem 0 0;
}

.footer-info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    box-sizing: border-box;
}

/* Desktop Adjustment */
@media (min-width: 768px) {
    .footer-info-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
	.site-footer {
		padding: 1.5rem;
	}
}

.footer-cta-banner {
    display: flex;
    flex-direction: column;
	background: var(--light-blue);
    gap: 30px;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 1.25rem; 
}

.cta-content-left {
    flex: 1;
	max-width: 48rem;
}


.cta-content-left h2 {
	margin: 0 0 2rem;
}

.cta-action-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.circle-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 15rem;
    height: 15rem;
    border-radius: 50%; 
    text-decoration: none;
	background: #fff;
	color: var(--off-black);
	font-family: "DM Sans", sans-serif;
    font-size: 1rem;
	text-transform: uppercase;
	font-weight: 700;
}

/* Desktop Adjustment */
@media (min-width: 768px) {
    .footer-cta-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 6rem;
    }
    
    .cta-action-right {
        justify-content: flex-end;
    }
}

.footer-main-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
	color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    text-decoration: none;
    display: inline-block;
	color: #e7e7e7;
	text-transform: capitalize;
	font-size: clamp(1rem, 1.56vw, 1.125rem);
	font-family: "DM Sans";
	font-weight: 300;
}

.footer-col h4 {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	color: #fff;
	font-family: "DM Sans";
	font-weight: 700;
	text-transform: capitalize;
}

.footer-logo {
	max-width: 18.75rem;
	height: auto;
    display: block;
}

.brand-info {
	max-width: 26rem;
}

.brand-info p {
	margin-top: 2rem;
	color: white;
}

.social-icon {
	width: 1.5rem;
	height: 1.5rem;
}

li.social-item a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Tablet Layout (2x2 Grid) */
@media (max-width: 900px) {
    .footer-main-columns {
        grid-template-columns: 1fr;
    }
	.circle-cta-btn {
		width: 12rem;
		height: 12rem;
	}
}

/* Desktop Layout (4 Columns) */
@media (min-width: 901px) {
    .footer-main-columns {
        grid-template-columns: 2fr 0.75fr 0.75fr 0.75fr; 
    }
}

.cards-section {
	background-color: var(--grey-background);
	padding: 3rem 0;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.125rem;
	max-width: 1400px;
	margin: 0 auto;
	width: 90%;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
	background: #ffffff;
	border-radius: 1.125rem;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.card-icon {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	margin-bottom: 1.5rem;
}

.card-title {
	text-transform: uppercase;
	margin: 0 0 1rem 0;
}

.card-description {
	line-height: 1.5;
	margin: 0 0 1.5rem 0;
}

.card-link {
	margin-top: auto;
	color: var(--blue);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	font-family: 'DM Sans', sans-serif;
}

.card-link:hover {
	text-decoration: underline;
}


.footer-bottom-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.legal-links a {
    text-decoration: none;
}

/* Desktop Adjustment */
@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}


/* ==========================================================================
   SERVICES LANDING PAGE
   ========================================================================== */


.our-services {
	text-align: center;
	padding-top: var(--spacing-large);
}

.our-services h1 {
	margin: 0 auto;
	font-size: clamp(5rem, 3rem + 6.67vw, 9rem);
}

.our-services p {
	margin: 0 auto;
}

html {
	scroll-snap-type: none;
	scroll-behavior: smooth;
}

.services-wrapper {
	position: relative;
	width: 100%;
	overflow: visible;
}

.service-content { 
	grid-area: content; 
}

.service-media { 
	grid-area: media; 
}

.service::before {
	content: '';
	display: block;
	grid-area: blank;
	background: #ffffff;
	height: 37rem;
	width: 100%;
	box-sizing: border-box;
}

.service {
	position: sticky;
	top: 0;
	height: 100vh;
	background-color: transparent;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-areas: "content media blank"; /* Odd rows: Content | Media | White Card */
	gap: 5%;
	align-items: center;
	box-sizing: border-box;
	padding: 2rem 0;
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/* Even rows: White Card | Media | Content */
.service:nth-child(even) {
	grid-template-areas: "blank media content";
}

.service .service-content,
.service .service-media {
	background: #ffffff;
	height: 37rem;
	width: 100%;
	margin: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.service .service-media {
	border-radius: 1.875rem;
}

.service .service-content {
	border-radius: 1.7rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service .service-content .button {
	margin-top: 1rem;
}

.service .service-content h2 {
	margin: 0;
}

.service-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1.875rem;
	display: block;
}

@media (max-width: 768px) {
	/* Hide the blank element completely on mobile */
	.service::before {
		display: none;
	}

	.service,
	.service:nth-child(even) {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"content";
		gap: 0;
		padding: 0;
		height: calc(100dvh - 75px);
		top: clamp(8%, calc(-1.71rem + 16.57vw), 10%);
		justify-content: center;
		align-content: flex-start;
	}

	.service .service-content,
	.service .service-media {
		height: auto;
	}
	.service .service-content {
		border-radius: 0;
		align-content: flex-start;
		height: 20rem;
	}
	.service .service-media {
		border-radius: 1.875rem 1.875rem 0 0; 
	}
	.service-media img {
		max-height: 350px;
		border-radius: 1.875rem;
	}
	.service .service-content h2 {
		font-size: 2rem;
	}
	.our-services {
		padding-bottom: 5rem;
	}
}

.how-it-works {
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

/*.page-template-template-inverse-protocol .how-it-works {
	padding-top: 0;
}*/

.how-it-works h2 {
	margin: 0;
}

.two-tone-bar {
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.two-tone-fill {
  height: 100%;
  width: 0%;
  background-color: var(--light-blue);
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.two-tone-bar.is-active .two-tone-fill {
  width: var(--progress, 50%);
}

.breakdown {
	display: flex;
	gap: 5rem;
	align-items: center;
	padding-bottom: 7rem;
}

.breakdown h3 {
	font-size: 5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 5.5rem */
	letter-spacing: -0.1rem;
	margin-top: 2.5rem;
	margin-bottom: 0.5rem;
}

.breakdown p {
	margin: 0;
}

.breakdown-number {
	text-align: center;
	font-family: Aquilone;
	font-size: 9.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 105%; /* 9.58125rem */
	letter-spacing: -0.1825rem;
	color: var(--blue);
}

.features-wrapper .landing-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: var(--spacing-large) 0;
}

.features-wrapper {
	background: linear-gradient(286deg, #3B8A90 -8.94%, #76CBC9 40.79%);
	border-radius: 0 0 1.875rem 1.875rem;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.feature-item {
	position: relative;
	padding-left: 1.5rem;
	opacity: 0.4; 
	transition: opacity 0.3s ease;
}


.feature-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.feature-item.is-active {
	opacity: 1;
}

.feature-item.is-active::before {
	background-color: #121212; 
}

.feature-item h3 {
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 0 0.5rem 0;
	color: #121212;
}

.feature-item p {
	line-height: 1.5;
	margin: 0;
	color: var(--grey);
}

.features-media {
	position: sticky;
	top: 15vh;
}

.features-media img {
	width: 100%;
	height: auto;
	border-radius: 1.875rem;
	display: block;
	object-fit: cover;
}

@media (max-width: 768px) {
	.how-it-works {
		container-type: inline-size; 
		text-align: center;
		padding-top: var(--spacing-large);
		padding-bottom: 5rem;
		width: 100%;
	}
	.how-it-works .stencil {
		font-size: clamp(2.5rem, 20cqw, 8rem);
		white-space: nowrap; 
		margin: 0;
		line-height: 1;
		
	}
	.features-wrapper {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.features-media {
		position: relative;
		top: auto;
	}
	.features-wrapper .landing-container {
		grid-template-columns: 1fr;
	}
	.features-media img {
		height: 25rem;
		object-position: 50% 10%;
	}
	.breakdown h3 {
		font-size: clamp(3rem, calc(-3.67rem + 20vw), 5rem)
	}
	.breakdown-number {
		font-size: clamp(5rem, calc(-3.67rem + 20vw), 8rem)
	}
	.breakdown {
		gap: clamp(3rem, calc(-3.67rem + 20vw), 5rem)
	}
}

.service-hero {
	position: relative;
	width: 98%;
	overflow: visible !important; 
	margin: 0 auto 6rem; 
}

.hero-frame {
  	width: 98%;
	margin: auto;
	height: 70vh;
	background-color: #000000;
	border-radius: 1.875rem;
	overflow: hidden; 
}

.hero-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-float-card {
	position: absolute;
	bottom: -5rem; 
	right: 5rem;
	width: 17rem;
	height: 17rem;
	border-radius: 1.875rem;
	overflow: hidden;
	box-shadow: 0 -15px 25px -5px rgba(0, 0, 0, 0.55);
	z-index: 10;
}

.hero-float-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	
	.service-hero {
		margin-bottom: 0px;
	}

	.hero-frame {
		height: 22rem;
	}

	.hero-float-card {
		display: none;
	}
}

.overview-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	padding: var(--spacing-large) 0;
	align-items: start;
}

@media (max-width: 768px) {
	.overview-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.overview-title h1 {
	margin: 0;
}

.overview-content p:first-of-type {
	margin-top: 0;
}


.overview-content p:last-of-type {
	margin-bottom: 2rem;
}

.accordion-scroll-section {
	position: relative;
	height: calc(100vh * var(--total-slides, 4));
	background-color: var(--grey-background);
	will-change: transform;
}

.accordion-sticky-wrapper {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.accordion-container {
	display: flex;
	height: 80vh;
	max-height: 45rem;
	background-color: var(--grey-background);
	border: 1px solid #B8B8B8;
	border-radius: 1.875rem;
	overflow: hidden;
}


.accordion-panel {
	display: flex;
	flex: 0 0 5rem; 
	border-right: 1px solid #B8B8B8;
	overflow: hidden;
	transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
	min-width: 5rem;
}

.accordion-panel:last-child {
	border-right: none;
}

.accordion-panel.is-active {
	flex: 1 1 0px;
}

.panel-tab {
	width: 5rem;
	min-width: 5rem;
	height: 100%;
	padding: 2.5rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	user-select: none;
}

.panel-num {
	font-size: 2rem;
	font-weight: 400;
	color: var(--blue);
	font-family: "aquilone", sans-serif;
	letter-spacing: -0.02em;
}

.panel-label {
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--blue);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	white-space: nowrap;
	font-family: "aquilone", sans-serif;
	letter-spacing: -0.02em;
}

.panel-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 3rem 3rem 3rem 1.5rem;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease 0.2s, visibility 0.4s;
	overflow-y: hidden;
}

.accordion-panel.is-active .panel-content {
	opacity: 1;
	visibility: visible;
}

.panel-text h3 {
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 0 1rem 0;
	color: #121212;
	letter-spacing: -0.02em;
}

.panel-text p {
	line-height: 1.6;
	color: var(--grey);
	margin: 0;
	max-width: 34rem;
}

.panel-media {
	width: 100%;
	max-width: 34rem;
	height: 25rem;
	border-radius: 1.875rem;
	overflow: hidden;
	flex-shrink: 0;
}

.panel-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 992px) {
  .accordion-container {
    height: 85vh;
    max-height: 38rem;
	margin-bottom: 4.5rem;
  }

  .accordion-panel {
    flex: 0 0 3.25rem;
  }

  .panel-tab {
    width: 3.25rem;
    min-width: 3.25rem;
    padding: 1.5rem 0.25rem;
  }

  .panel-content {
    padding: 1.5rem 1.25rem 1.5rem 0.75rem;
    gap: 1.25rem;
  }

}

@media (max-width: 799px) {
	
  	.accordion-container {
	  flex-direction: column;
	  height: 85vh;
	  max-height: 45rem;
  }

  	.accordion-panel {
	  flex: 0 0 3.5rem;
	  width: 100%;
	  flex-direction: column;
	  border-right: none;
	  border-bottom: 1px solid #E2E8F0;
	  transition: flex 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  	.accordion-panel:last-child {
	  border-bottom: none;
  }

  	.accordion-panel.is-active {
	  flex: 1 1 auto;
	  margin-top: -0.5rem;
  }

  	.panel-tab {
	  width: 100%;
	  min-width: 100%;
	  height: 3.5rem;
	  flex-direction: row;
	  justify-content: space-between;
	  padding: 0 1.25rem;
	  margin-top: 0.5rem;
  }

  	.panel-label {
	  writing-mode: horizontal-tb;
	  transform: none;
	  font-size: 1.5rem;
  }
	
	.panel-num {
	  font-size: 1.5rem;
	}

  	.panel-content {
	  padding: 1rem 1.25rem 1.25rem 1.25rem;
	  gap: 1rem;
	  width: 100%;
	  overflow-x: hidden;
	  height: 100%;
	  align-items: center;
	  justify-content: center;
  }
  

  	.panel-text h3 {
	  font-size: 2rem;
	  margin-bottom: 0.5rem;
  }

  	.panel-text p {
	  font-size: 0.875rem;
  }

  	.panel-media {
	  height: 15rem;
	  max-width: 100%;
  }
	
	.accordion-container,
	.accordion-panel,
	.panel-content,
	.panel-text,
	.panel-media {
		box-sizing: border-box;
		max-width: 100%;
		min-width: 0; 
  }
}


@media (max-width: 375px) {
	.panel-media {
		height: 8rem;
	}	
}

.stencil {
	-webkit-text-stroke-width: 1.2px;
	-webkit-text-stroke-color: var(--blue);
	color: transparent;
	font-family: Aquilone;
	font-size: 9.375rem;
	font-style: normal;
	font-weight: 900;
	line-height: 105%; /* 9.84375rem */
	letter-spacing: -0.1875rem;
}

.benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	padding: var(--spacing-large) 0 var(--spacing-large);
}

.benefits img {
	border-radius: 1.875rem;
}

.benefits div:nth-of-type(2) img {
	width: 20rem;
	height: 20rem;
	object-fit: cover;
	margin-left: auto;
}

.benefits div:nth-of-type(1) img {
	width: 100%;
	height: 39rem;
	object-fit: cover;
}

.benefits div:nth-of-type(2) {
	display: flex;
	flex-direction: column;
}

.benefits h3 {
	margin: 0;
	font-size: 3.75rem;
	line-height: 110%; /* 4.125rem */
	letter-spacing: -0.075rem;
	font-weight: 400;
}

.benefits h2 {
	margin-top: 0;
	margin-bottom: 2rem;
	line-height: 0.8;
	font-weight: 700;
}

.benefits .benefit-label {
	margin-top: 5rem;
}

.benefits p {
	margin-top: 0.5rem;
}

.benefits .button {
	margin-top: 0.5rem;
}

@media (max-width: 768px) {
	.benefits .benefit-label {
		margin-top: 0;
	}
	.benefits {
		grid-template-columns: 1fr;
	}
	.benefits h2 {
		text-align: center;
		font-size: clamp(7rem, 6.429rem + 3.274vw, 9.375rem);
		margin-bottom: 2rem;
	}
	
	.benefits div:nth-of-type(2) img {
			display: none;
	}
	.benefits h3 {
		margin: 0;
	}
	.benefits div:nth-of-type(2) {
		padding-top: 0;
	}
	.benefits {
		gap: 2rem;
	}
	.benefits div:nth-of-type(1) img {
		height: 20rem;
	}
}

.case-studies-section {
	background-color: var(--off-black);
	border-radius: 1.875rem;
	padding: var(--spacing-large) 0 var(--spacing-large);
	box-sizing: border-box;
	margin: 0 1%;
}

.case-studies-title {
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 5rem 0;
	font-size: clamp(6rem, 5.107rem + 4.464vw, 9.125rem);
	letter-spacing: -0.1825rem;
}

.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 21rem;
	gap: 2rem;
	grid-auto-flow: dense;
}

.case-studies-grid.container {
	max-width: 1800px;
}

.case-study-card {
	position: relative;
	border-radius: 1.25rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	text-decoration: none;
	box-sizing: border-box;
	background-color: #222222;
}

.case-study-card .card-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	z-index: 1;
}

.case-study-card:hover .card-bg-img {
  	transform: scale(1.05);
}

.case-study-card .card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 8.14%, rgba(0, 0, 0, 0.21) 52.82%, rgba(0, 0, 0, 0.65) 100%);
	z-index: 2;
}

.case-study-card .card-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.card-project {
	color: #FFFFFF;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
	font-size: 2rem;
}

.card-service {
	color: var(--light-blue);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: "DM Sans", sans-serif;
}

/* 1: Tall Card Left */
.case-studies-grid .case-study-card:nth-child(8n + 1) {
	grid-column: 1;
	grid-row: span 2;
}

/* 2: Wide Card Top Right */
.case-studies-grid .case-study-card:nth-child(8n + 2) {
	  grid-column: 2 / span 2;
	  grid-row: span 1;
}

/* 3 & 4: Small Cards Middle/Right */
.case-studies-grid .case-study-card:nth-child(8n + 3) {
  	grid-column: 2;
}
.case-studies-grid .case-study-card:nth-child(8n + 4) {
  	grid-column: 3;
}

/* 5: Wide Card Bottom Left */
.case-studies-grid .case-study-card:nth-child(8n + 5) {
	grid-column: 1 / span 2;
	grid-row: span 1;
}

/* 6 & 7: Small Cards Bottom Left */
.case-studies-grid .case-study-card:nth-child(8n + 6) {
  	grid-column: 1;
}

.case-studies-grid .case-study-card:nth-child(8n + 7) {
  	grid-column: 2;
}

/* 8: Tall Card Right */
.case-studies-grid .case-study-card:nth-child(8n) {
	grid-column: 3;
	grid-row: span 2;
}

@media (max-width: 992px) {
  	.case-studies-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 20rem;
  }

  /* Reset 8-card grid spans for 2-column layout */
  	.case-studies-grid .case-study-card:nth-child(n) {
		grid-column: auto;
		grid-row: auto;
  }
}

@media (max-width: 600px) {
  	.case-studies-section {
    	padding: var(--spacing-large) 1.25rem;
  }

  	.page-template-template-case-study .case-studies-title {
    	font-size: 2.25rem;
  }

  	.case-studies-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 20rem;
  }
}


.case-study-hero {
	background-color: #121212;
	border-radius: 1.875rem;
	padding: 6.25rem 3.5rem 0;
	margin: 0 auto;
	width: 98%;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
}

.case-study-back-link,
.back-link {
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
	gap: 0.62rem;
	transition: opacity 0.2s ease;
}

.case-study-back-link:hover {
  	opacity: 1;
}

.case-study-hero-title {
	font-family: "Aquilone", sans-serif;
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1.1;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 auto 4rem;
	max-width: 1100px;
	letter-spacing: -0.01em;
}

.case-study-hero-media {
	width: 100%;
	height: 50vh;
	max-height: 28rem;
	min-height: 350px;
	border-radius: 1.25rem 1.25rem 0 0;
	overflow: hidden;
}

.case-study-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  	.case-study-hero {
		padding: 4rem 1.75rem 0;
  }

  	.case-study-hero-title {
   	 	margin-bottom: 2rem;
  }

  	.case-study-hero-media {
		height: 30vh;
		min-height: 220px;
  }
	
	.case-study-back-link,
	.back-link {
		font-size: 0.875rem;
	}
}



.case-study-objectives-section {
	padding: var(--spacing-large) 0;
	background-color: #ffffff;
}

.case-study-objectives-section  .case-study-container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 5rem;
	align-items: start;
}

.objectives-title {
	font-family: "Aquilone", sans-serif;
	font-size: clamp(3.75rem, 6vw, 5rem);
	line-height: 110%;
	text-transform: uppercase;
	color: #000000;
	margin: 0 0 1.5rem 0;
	letter-spacing: -0.03em;
}

.objectives-body-text p {
  	margin-bottom: 1.5rem;
}

.objectives-body-text p:last-child {
  	margin-bottom: 0;
}

.services-card {
	background-color: var(--grey-background, #f7f7f7);
	border-radius: 1.25rem;
	padding: 5rem 3.75rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.services-card-title {
	color: var(--blue, #3b8a90);
	font-family: "Aquilone", sans-serif;
	font-size: 2rem;
	text-transform: uppercase;
	margin: 0 0 1.5rem 0;
	letter-spacing: -0.02em;
}

.services-card-list {
	list-style: disc;
	padding-left: 2rem;
	margin: 0 0 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.services-card-list li,
.services-card p {
	color: var(--grey, #414141);
	line-height: 1.5;
}

.services-card-list ul {
	text-transform: capitalize;
}

.services-card-intro p {
	margin-top: 0;
}

.services-card-btn {
	background-color: var(--light-blue, #76cbc9);
	color: var(--off-black, #121212);
	border-radius: 3.75rem;
	padding: 1.1rem 2.2rem;
	font-family: "DM Sans", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.services-card-btn:hover {
	transform: translateY(-2px);
	opacity: 0.95;
}

/* Responsive Layout */
@media (max-width: 992px) {
  	.case-study-objectives-container {
		grid-template-columns: 1fr;
		gap: 3rem;
  }

  	.services-card {
    	padding: 2.5rem 2rem;
  }
}

@media (max-width: 992px) {
	.services-card-title {
		font-size: 1.95rem;
	}
}


.full-width {
	height: 60vh;
	width: 100%;
}

.full-width img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wysiwyg-two-col-section {
	padding: var(--spacing-large) 0 0;
	width: 100%;
}

.wysiwyg-two-col-title {
	font-family: "Aquilone", sans-serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height: 1.1;
	text-transform: uppercase;
	color: #000000;
	margin: 0 0 2rem 0;
	letter-spacing: -0.02em;
}

.wysiwyg-columns {
	column-count: 2;
	column-gap: 5rem;
}

.wysiwyg-columns > *:first-child {
  	margin-top: 0;
}

.wysiwyg-columns p:last-of-type {
	margin-bottom: 0;
}

.blip-text:last-of-type {
	margin-bottom: 0;
}

@media (max-width: 768px) {
  	.wysiwyg-columns {
		column-count: 1;
		column-gap: 0;
  }
}

.case-study-collage-section {
	padding: var(--spacing-large) 0;
	width: 100%;
}

.collage-container {
	width: 100%;
	margin: 0 0 0 7.5%;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: flex-start;
}

.collage-item {
	width: 100%;
	overflow: hidden;
	border-radius: 1.5rem;
}

.collage-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 1.5rem;
}

.collage-item-left {
	height: 28rem;
}

.collage-item-right {
	height: 39rem;
}

.page-id-38317 .full-width img {
	object-position: 50% 10%;
}

.page-id-38362 .full-width img {
	object-position: 50% 70%;	
}

.page-id-38314 .full-width img {
	object-position: 50% 85%;	
}

.page-id-38314 .case-study-hero-media img {
	object-position: 50% 100%;
}

.page-id-37063 .collage-item-left img {
	object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.collage-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
  }
	.collage-container {
		width: 90%;
		margin: auto;
	}
}

.blip-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 70%;
	padding-bottom: var(--spacing-large);
}

.blip-heading {
	font-family: "Aquilone", sans-serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height: 1.1;
	text-transform: uppercase;
	color: #000000;
	margin: 0;
	letter-spacing: -0.02em;
}


.case-study-three-col-section {
  	padding: 4.69rem 0;
	background: var(--off-black);
  	width: 100%;
}

.three-col-container {
	width: 93%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.4rem;
	align-items: center;
}

.three-col-item {
	width: 100%;
	overflow: hidden;
	border-radius: 1.5rem;
	height: 32rem;
}

.three-col-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 1.5rem;
}

@media (max-width: 1024px) {
  .three-col-container {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .three-col-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
	.blip-content-wrapper {
		width: 100%;
	}
}


.timeline-section {
	width: 100%;
	margin: 0 auto;
	background-color: var(--off-black);
	border-radius: 24px;
	padding: var(--spacing-large) 0;
	position: relative;
	color: white;
}


.timeline-section .container {
	display: grid;
	box-sizing: border-box;
	grid-template-columns: 1fr 1fr;
	position: relative;
	color: white;
}

.sticky-left {
	position: sticky;
	top: calc(50vh - 200px); 
	height: fit-content;
	align-self: start;
	padding-right: 5rem;
}

.left-content h2 {
	font-size: 3.75rem;
	letter-spacing: -0.075rem;
	margin-bottom: 2rem;
	margin-top: 0;
	line-height: 100%;
}

.left-content p {
	color: white;
	margin-bottom: 2rem;
}

.timeline-right {
	position: relative;
	padding-left: 5rem;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.timeline-track {
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background-color: #2a2a2a;
}

.timeline-item {
	position: relative;
	opacity: 0.4;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-dot {
	position: absolute;
	left: -5.3rem;
	top: 2.3rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #2a2a2a;
	transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.year {
	color: var(--light-blue);
	font-size: 3.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 4.125rem */
	letter-spacing: -0.075rem;
	display: block;
	margin-bottom: 1rem;
	font-family: "aquilone" , sans-serif;
}

.item-content h3 {
	font-size: 2rem;
	margin: 0 0 0.5rem 0;
	color: white;
	letter-spacing: -0.04rem;
}

.item-content p {
	color: white;
	margin-bottom: 2rem;
}

.item-content img {
	width: 100%;
	border-radius: 1.875rem;
	display: block;
	height: 25rem;
    object-fit: cover;
}

/* Active Highlight States */
.timeline-item.active {
	opacity: 1;
	transform: translateY(0);
}

.timeline-item.active .timeline-dot {
	background-color: var(--light-blue);
	transform: scale(1.3);
	box-shadow: 0 0 12px rgba(94, 194, 182, 0.8);
}


@media (max-width: 768px) {
	.sticky-left {
		top: 0;
		position: relative;
		padding-right: 0;
	}
	.timeline-section .container {
		grid-template-columns: 1fr;
		gap: 5rem;
	}
	.timeline-dot {
		left: -2.3rem;
	}
	.timeline-right {
		padding-left: 2rem;
	}
}



.page-template-template-about-us .team-grid-section {
	padding-top: var(--spacing-large);
}

.page-template-template-about-us #logo-slider,
.page-template-template-about-us .logo-slider-section {
	background: var(--grey-background);
}

.recognition-section {
	background-color: #ffffff;
	padding: var(--spacing-large) 0;
}

.recognition-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.recognition-content h2 {
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 110%;
	letter-spacing: -0.075rem;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.recognition-logos-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.logo-card {
	background-color: var(--grey-background);
	border-radius: 1.25rem;
	height: 6.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
}

.logo-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	/*filter: grayscale(100%);*/
}

.logo-card:nth-child(odd):last-child {
	grid-column: 1 / -1;
	width: calc(50% - 8px); 
	justify-self: center;
}

@media (max-width: 768px) {
  .recognition-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .recognition-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logo-card:nth-child(odd):last-child {
    width: 100%;
  }
}

/* ==========================================================================
   Blog 
   ========================================================================== */

.blog-feed-section {
	background-color: var(--off-black);
	padding: 0 0 var(--spacing-large);
	box-sizing: border-box;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.blog-card {
	background-color: white;
	border-radius: 24px;
	padding: 1rem;
	display: flex;
	flex-direction: column;
}

.blog-card-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 20px;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.03);
}

.blog-card-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1rem;
}

.blog-date {
	color: var(--blue);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05px;
	margin-bottom: 8px;
	display: block;
}

.blog-title {
	font-size: 2rem;
	font-weight: 400;
	line-height: 110%;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	letter-spacing: -0.04rem;
}

.blog-title a {
	color: black;
	text-decoration: none;
	font-family: "aquilone", sans-serif;
}

.blog-excerpt {
	color: var(--grey);
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 0 20px 0;
}

.blog-btn {
	margin-top: auto; 
	align-self: flex-start;
	transition: opacity 0.2s ease;
}

.blog-feed-title {
	text-align: center;
    color: white;
    background: var(--off-black);
	padding: var(--spacing-large) 0 5rem;
}

.blog-feed-title h1 {
	margin: 0;
	font-size: 7rem;
}

.blog-btn:hover {
	opacity: 0.85;
}

.blog-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 60px;
}

.blog-pagination .page-numbers {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 600;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-pagination .page-numbers.current {
	background-color: var(--light-blue);
	color: var(--off-black);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.single-post-hero {
	background-color: var(--off-black);
	color: #ffffff;
	padding: var(--spacing-large) 0 3.12rem;
}

.blog-hero-container {
	text-align: center;
}

.post-hero-title {
	font-size: 5rem;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.15;
	max-width: 850px;
	margin: auto;
}

.post-hero-image {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	margin: 5rem 0;
}

.post-hero-image img {
	width: 100%;
	height: auto;
	max-height: 35rem;
	object-fit: cover;
	display: block;
}

.blog-hero-container {
	width: 95%;
	margin: auto;
}

.post-hero-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
}

.meta-date {
	text-align: left;
	font-size: 0.8rem;
	color: #fff;
}

.meta-date span {
	display: block;
	margin-bottom: 2px;
	font-size: 1rem;
	font-weight: 400;
}

.date-text {
	color: var(--blue);
	font-size: 1.5rem;
	font-family: "Aquilone", sans-serif;
	font-weight: 400;
}

.meta-share {
	display: flex;
	gap: 10px;
}

.meta-share a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #fff;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: bold;
	transition: background-color 0.2s ease;
}

.meta-share a:hover {
	background-color: var(--blue);
	color: var(--off-black);
}

.meta-share a:last-of-type {
	font-size: 1.8rem;
}

.single-post-body {
	background-color: #ffffff;
	color: #111111;
	padding: 80px 0;
}

.single-post-container {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 5rem;
	align-items: start;
}


.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 1.875rem;
	margin: 30px 0;
	width: 100%;
}

.single-post-sidebar {
	position: sticky;
	top: 6rem;
}

.newsletter-card {
	background: linear-gradient(284deg, #3B8A90 -7.63%, #76CBC9 49.23%);
	border-radius: 1.25rem;
	padding: 3.75rem 2rem;
	color: #000000;
	text-align: center;
}

.newsletter-card h3 {
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: -0.03rem;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.newsletter-card p {
	font-size: 1rem;
	line-height: 150%;
	margin-bottom: 20px;
}

.newsletter-form input {
	width: 100%;
	padding: 12px 16px;
	border-radius: 30px;
	border: none;
	font-size: 0.85rem;
	margin-bottom: 12px;
	box-sizing: border-box;
}

.newsletter-form button {
	width: 100%;
	padding: 12px 0 10px;
	border-radius: 30px;
	border: none;
	background-color: #121212;
	color: var(--light-blue);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
	opacity: 0.9;
}

.newsletter-disclaimer {
	display: block;
	font-size: 0.875rem;
	margin-top: 14px;
	text-align: center;
	color: black;
}

.wp-block-paragraph {
	margin-bottom: 2rem;
}

.related-posts-section {
	background: linear-gradient(284deg, #3B8A90 -7.63%, #76CBC9 49.23%);
	padding: var(--spacing-large) 0;
	color: #000000;
}

.related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5rem;
}

.related-header h2 {
	font-size: 5rem;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.related-header p {
	margin: 0;
}

.blog-card-content .button {
	margin-top: auto;
}

.white {
	background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.single-post-container {
		grid-template-columns: 1fr;
		gap: 40px;
  }

	.post-hero-title {
		font-size: 2.75rem;
  }
	
	.post-hero-image {
		margin: 3rem 0 0.75rem;
	}
	
	.single-post-hero {
		padding: 3rem 0;
	}
	
	.single-post-body {
		padding: 3rem 0;
	}
	
	.related-header h2 {
		font-size: 3.5rem;
	}
	
	.related-header {
		gap: 2rem;
		flex-direction: column;
		align-items: flex-start;
	}
}

.wp-element-caption {
	font-family: "DM Sans", sans-serif;
	font-size: 0.8rem;
	margin-top: 0;
	margin-bottom: 3rem;
}

.entry-content h3 {
	margin-top: 3rem;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.wp-block-separator {
	display: none;
}

.single .faq-item {
	background: unset;
    padding: unset;
    margin-bottom: unset;
    border-radius: unset;
}

.single .faq-section {
	background: white;
	border: none;
}

.wp-element-caption {
	display: none;
}

.schema-faq-section:not(:first-of-type) {
	margin-top: 3rem;
}

.page-template-template-contact,
.page-template-template-lead-gen {
	background: var(--off-black);
}

.wpcf7 form {
	background-color: var(--off-black);
	padding: 40px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.wpcf7 label {
	display: block;
	width: 100%;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 400;
}

/* Fix standard CF7 paragraph margins */
.wpcf7 p {
	margin: 0;
}

/* Underline Style for Text, Email, and Subject Fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"]{
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid #333333;
	color: #ffffff;
	padding: 12px 0 8px 0;
	font-size: 1rem;
	margin-top: 8px;
	outline: none;
	box-shadow: none;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus {
	border-bottom-color: #5ec2b6;
}

/* Boxed Style for Textarea */
.wpcf7 textarea {
	width: 100%;
	background: transparent;
	border: 1px solid #333333;
	color: #ffffff;
	padding: 16px;
	font-size: 1rem;
	margin-top: 10px;
	min-height: 220px;
	outline: none;
	box-sizing: border-box;
	border-radius: 4px;
	resize: vertical;
	transition: border-color 0.3s ease;
}

.wpcf7 textarea:focus {
	border-color: #5ec2b6;
}

/* Checkbox / Acceptance Styling */
.wpcf7 .wpcf7-acceptance {
	margin-top: 10px;
}

.wpcf7 .wpcf7-acceptance label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 0.95rem;
	color: #ffffff;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	background-color: #ffffff;
	border-radius: 2px;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	margin: 0;
	outline: none;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000000;
	font-size: 11px;
	font-weight: 900;
}

/* Pill Submit Button */
.wpcf7 input[type="submit"] {
	align-self: flex-start;
	margin-top: 10px;
	transition: opacity 0.2s ease, transform 0.1s ease;
}

.wpcf7 input[type="submit"]:hover {
	opacity: 0.85;
}

.wpcf7 input[type="submit"]:active {
	transform: scale(0.98);
}

.contact-form-wrapper {
	background: var(--off-black);
	max-width: 900px;
	margin: auto;
	padding-bottom: var(--spacing-large);
	width: 90%;
}

.contact-title h1 {
	text-align: center;
	color: white;
	font-size: 7rem;
}

@media (max-width: 768px) {
	.contact-title h1 {
		font-size: 6rem;
	}	
	.contact-form-wrapper {
		width: 95%;
	}
}

.copyright {
	color: white;
}

.white h1 {
	color: white;
	text-align: center;
	padding: var(--spacing-large) 0;
}

.page-template-template-lead-gen .white {
	background: var(--off-black);
}



.acf-stats-slider{
	width: 90%;
	margin: auto;
	padding: var(--spacing-large) 0;
}

.acf-stats-slider__viewport{
  	overflow: hidden;
}

.acf-stats-slider__track{
	display: flex;
	will-change: transform;
	transition: transform .45s ease;
}

.acf-stats-slider__slide{
	flex:0 0 100%;
	padding: 0 24px 16px;
	box-sizing: border-box;
	text-align: center;
}

  /* 2-up on desktop */
@media (min-width: 900px){
  .acf-stats-slider__slide{
    flex-basis: 50%
  }
}

.acf-stats-slider__name{
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	margin-top: 0;
	color: #414141;
	font-family: "DM Sans", sans-serif;
}

.acf-stats-slider__name p {
	margin-top: 0;
}

.acf-stats-slider__stat{
	font-weight: 600;
	text-transform: uppercase;
	font-size: clamp(2rem, 3.2vw, 2.625rem);
	line-height: 1.05;
	margin-bottom: 1.5rem;
	font-family: "aquilone", sans-serif;
}

.acf-stats-slider__logo{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
}

.acf-stats-slider__logo-img{
	width: 12rem;
	height: auto;
}

.acf-stats-slider__dots{
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 12px 0 0;
}

.acf-stats-slider__dot{
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 0;
	background: rgba(0,0,0,.2);
	cursor: pointer;
}

.acf-stats-slider__dots button {
  	padding: 0;
}

.acf-stats-slider__dot[aria-current='true']{
  	background: #3B8A90;
}



/* ==========================================================================
   Video Feature Section
   ========================================================================== */

.video-feature {
	background-color: var(--off-black);
	color: #ffffff;
	padding: var(--spacing-large) 0;
	border-radius: 1.875rem;
}

.video-feature__container {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

@media (min-width: 900px) {
	.video-feature__container {
		grid-template-columns: 1.8fr 1fr;
		gap: 5rem;
	}
}

@media (max-width: 786px) {
	.video-feature {
		margin-bottom: var(--spacing-large);
	}
}

.video-feature__wrapper {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 1.25rem;
	overflow: hidden;
}

.video-feature__poster {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.video-feature__play-btn {
	background: rgba(0, 0, 0, 0.6);
	border: none;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
	padding: unset;
}

.video-feature__poster:hover .video-feature__play-btn {
	transform: scale(1.1);
	background: rgba(0, 0, 0, 0.8);
}

.video-feature__iframe-target iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	border: 0;
}

.video-feature__title {
	font-size: 3.75rem;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	margin-top: 0;
	line-height: 1.1;
	letter-spacing: -0.75px;
}

.video-feature__description p {
	color: #fff;
	margin: 0 0 2.5rem;
}

.video-feature__btn {
	display: inline-block;
	background-color: var(--off-black);
	color: #000000;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 25px;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
	transition: opacity 0.2s ease;
}

.video-feature__btn:hover {
  	opacity: 0.9;
}



.inverse-protocol h2 {
  	margin: 0 0 1rem 0;
}

.inverse-protocol p {
	margin: 0;
} 

/* Comaprison Table */
.compare-wrap {
	width: 100%;
	overflow-x: auto;
	background: var(--light-blue);
	padding: var(--spacing-large) 0;
}

.compare-table {
	width: 90%;
	margin: 0 auto;
	max-width: 1400px;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 1.875rem;
	overflow: hidden;
	background: #fff;
}

.compare-table th,
.compare-table td {
	padding: 18px 18px;
	vertical-align: middle;
}

.compare-table .col-feature { 
	width: 38%; 
}

.compare-table .col-inverse { 
	width: 31%; 
	text-align: center; 
}
.compare-table .col-traditional { 
	width: 31%; 
	text-align: center; 
}

.compare-table th.col-feature {
	border-right: 1px solid rgba(1, 8, 11, 0.15);
	border-bottom: 1px solid rgba(1, 8, 11, 0.15);
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	text-align: left;
	background: #fff;
	font-family: "DM Sans", sans-serif;
}

.compare-table thead th.col-feature {
	border-bottom: 1px solid rgba(1, 8, 11, 0.15);
}

.compare-table th.col-inverse,
.compare-table td.col-inverse {
	background: #3B8A90;
	border-left: 1px solid rgba(255, 255, 255, 0.10);
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
}

.compare-table .inverse-title {
	font-family: Aquilone, serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.003rem;
	text-transform: uppercase;
}

.compare-table th.col-traditional,
.compare-table td.col-traditional {
	background: #F7F7F7; /* fixed: you had ## */
	border-left: 1px solid rgba(1, 8, 11, 0.15);
	border-bottom: 1px solid rgba(1, 8, 11, 0.15);
	color: #000;
}

.compare-table .traditional-title {
	font-family: Aquilone, serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.003rem;
	text-transform: uppercase;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
	border-bottom: 0;
}

.compare-table td {
  	position: relative;
}

.compare-table td .check {
	display: none;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
}

.compare-table td.is-checked .check {
  	display: inline-block;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 768px){
  	.compare-table th, .compare-table td { 
		padding: 14px 12px; 
	}
}




/* ==========================================================================
   Channels Breakdown Section
   ========================================================================== */
.channels {
  	background: #77ccca;
}

.channels__wrap {
  	margin: 0 auto;
	max-width: 1400px;
    padding: var(--spacing-large) 0;
    width: 90%;
}

.channels__title {
	margin: 0 0 3rem;
	text-align: center;
	color: #121212;
	font-family: Aquilone, serif;
	font-size: 3.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
	letter-spacing: -0.075rem;
}

/* Tabs */
.channels__tabs {
	display: flex;
	gap: 0.875rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto 3.12rem;
}

.channels__tab {
	appearance: none;
	border: 1px solid rgba(18, 18, 18, 0.25);
	background: transparent;
	color: #121212;
	border-radius: 1.875rem;
	display: flex;
	padding: 1.125rem 2rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	min-width: 9rem;
	font-family: Aquilone, serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.03rem;
	transition: transform 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
	user-select: none;
}

.channels__tab:hover {
	transform: translateY(-1px);
	border-color: rgba(18, 18, 18, 0.4);
}

.channels__tab.is-active,
.channels__tab[aria-selected="true"] {
	background: #3b8a90;
	border-color: #3b8a90;
	color: #fff;
}

.channels__tab:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.75);
	outline-offset: 3px;
}

/* Panels */
.channels__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 1.5rem;
	align-items: stretch;
}

.channels__media {
	margin: 0;
	border-radius: 1.25rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.25);
	min-height: 35rem;
}

.channels__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.channels__card {
	border-radius: 1.25rem;
	background: #fff;
	padding-right: clamp(2.19rem, 5.5vw, 5rem);
	padding-left: clamp(2.19rem, 5.5vw, 5rem);
	padding-top: clamp(2.8rem, 5.5vw, 5rem);
	padding-bottom: clamp(2.8rem, 5.5vw, 5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.channels__headline {
	margin: 0 0 0.75rem;
	color: #121212;
	font-family: Aquilone, serif;
	font-size: clamp(2rem, 3vw, 2.75rem);
	font-weight: 600;
	line-height: 110%;
	letter-spacing: -0.05rem;
	text-transform: none;
}

.channels__text {
	margin: 0;
	color: #414141;
	font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 1.125rem;
	line-height: 150%;
}

.channels__panel[hidden] {
	display: none;
}

.channels__panel.is-active {
	display: block;
}

@media (max-width: 900px) {
  .channels__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .channels__title {
    font-size: clamp(2.2rem, 7vw, 3.1rem);
  }
  .channels__tab {
    font-size: 1.15rem;
    min-width: unset;
  }
  .channels__media {
    min-height: 20rem;
  }
}


/* Hide native play buttons and overlay controls on iOS / Android */
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
}




#wpadminbar {
    display: none !important;
}
html {
    margin-top: 0 !important;
}


