/* ===== WordPress isolation reset ===== */
.agency-ad-accounts,
.agency-ad-accounts * {
	box-sizing: border-box;
}

.agency-ad-accounts img {
	max-width: 100%;
	height: auto;
}

.agency-ad-accounts a {
	text-decoration: none;
	color: inherit;
}

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



/* .main{
  max-width: 1440px;
  margin: 0 auto;
} */

/* ===================== DESIGN TOKENS ===================== */
/* Scoped to .agency-ad-accounts so variables don't leak to other WordPress pages */
.agency-ad-accounts {
	--orange: #f0882d;
	--orange-dark: #ff4d00;
	--green: #349f20;
	--green-dark: #3d8a24;
	--black: #181818;
	--white: #FFFFFF;
	--bg-orange: rgba(240, 136, 45, 0.10);
	--bg-orange-faint: rgba(240, 136, 45, 0.1);
	--gradient: linear-gradient(90.99deg, var(--orange) 0.04%, var(--orange-dark) 99.96%);
	margin: 0;
	padding: 0;
}

.agency-ad-accounts p,
.agency-ad-accounts h1,
.agency-ad-accounts h2,
.agency-ad-accounts h3,
.agency-ad-accounts h4,
.agency-ad-accounts h5,
.agency-ad-accounts h6 {
	margin: 0;
	padding: 0;
}

/* ===================== UTILITIES ===================== */
.agency-ad-accounts .btn-green {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none;
	border-radius: 8px;
	padding: 20px 32px;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-ms-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
	margin-top: 40px;
	font-size: 16px;
	background: var(--green);
	color: #fff;
	line-height: 24px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	word-wrap: nowrap;
}

.agency-ad-accounts .btn-green::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 50%;
	bottom: 0;
	left: 50%;
	z-index: -1;

	-webkit-transform: skewX(-30deg);
	-moz-transform: skewX(-30deg);
	-ms-transform: skewX(-30deg);
	-o-transform: skewX(-30deg);
	transform: skewX(-30deg);

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.agency-ad-accounts .btn-green:hover::before {
	right: 0%;
	left: 0%;
	margin-left: -1em;
	margin-right: -1em;
	background: rgba(0, 0, 0, 0.5);
}

/* .agency-ad-accounts .btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
} */

.agency-ad-accounts .section-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}

.agency-ad-accounts .fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.agency-ad-accounts .fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===================== 2. TRUST BAR ===================== */
.agency-ad-accounts .trust-bar {
	background: rgba(240, 136, 45, 0.15);
	height: 44px;
	overflow: hidden;
	position: relative;
	margin-top: 97px;
}

.admin-bar .agency-ad-accounts .trust-bar {
	margin-top: 65px;
}

.agency-ad-accounts .trust-bar::before,
.agency-ad-accounts .trust-bar::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.agency-ad-accounts .trust-bar::before {
	left: 0;
	background: linear-gradient(to right, rgba(240, 136, 45, 0.15), transparent);
}

.agency-ad-accounts .trust-bar::after {
	right: 0;
	background: linear-gradient(to left, rgba(240, 136, 45, 0.15), transparent);
}

.agency-ad-accounts .trust-track {
	display: flex;
	align-items: center;
	gap: 28px;
	width: 100%;
	height: 100%;
	justify-content: center;
	/* animation: trustScroll 18s linear infinite; */
}

/* .agency-ad-accounts .trust-track:hover {
  animation-play-state: paused;
} */

/* @keyframes trustScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
} */

.agency-ad-accounts .trust-item {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--black);
	white-space: nowrap;
	flex-shrink: 0;
}

.agency-ad-accounts .trust-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
}

/* ===================== 3. HERO ===================== */
.agency-ad-accounts .hero {
	position: relative;
	background: #fff;
	padding: 72px 0 0 0;
	text-align: center;
	overflow: hidden;
	display: block;
	height: auto !important;
	max-height: 100% !important;
}

.agency-ad-accounts .hero-blob {
	position: absolute;
	width: 710px;
	height: 710px;
	border-radius: 50%;
	background: var(--orange);
	opacity: 0.15;
	filter: blur(250px);
	pointer-events: none;
	z-index: 0;
}

.agency-ad-accounts .hero-blob-left {
	bottom: 200px;
	left: -200px;
}

.agency-ad-accounts .hero-blob-right {
	top: -44px;
	right: -200px;
}

.agency-ad-accounts .hero-inner {
	position: relative;
	z-index: 1;
}

.agency-ad-accounts .stars-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 28px;
}

.agency-ad-accounts .stars-row .stars {
	color: var(--orange);
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 1;
}

.agency-ad-accounts .stars-row span {
	font-size: 14px;
	font-weight: 400;
}

.agency-ad-accounts .stars-row span b {
	font-weight: 600;
}

.agency-ad-accounts .avatar-stack {
	display: flex;
	align-items: center;
}

.agency-ad-accounts .avatar-stack img {
	/*width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;*/
	object-fit: cover;
	margin-left: -10px;
	display: block;
}

.agency-ad-accounts .avatar-stack img:first-child {
	margin-left: 0;
}

.agency-ad-accounts .hero h1 {
	font-size: 64px;
	font-weight: 500;
	line-height: 100%;
	color: var(--black);
	max-width: 1300px;
	margin: 0 auto 48px;
}

.agency-ad-accounts .hero h1 strong {
	font-weight: 800;
}

.agency-ad-accounts .hero-sub,
.agency-ad-accounts p,
.agency-ad-accounts .hero p {
	font-size: 18px;
	font-weight: 500;
	max-width: 860px;
	margin: 0 auto 40px;
	line-height: 120%;
	color: var(--black);
}

.agency-ad-accounts .hero-bullets {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.agency-ad-accounts .hero-bullet {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 5%;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--black);
}

.agency-ad-accounts .hero-bullet .check-icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	/* background: var(--gradient); */
	background: linear-gradient(90.99deg, var(--orange) 0.04%, var(--orange-dark) 99.96%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	flex-shrink: 0;
}

.agency-ad-accounts .hero-cta-wrap {
	margin-bottom: 56px;
}

.agency-ad-accounts .hero-cta-wrap .btn-green {
	width: 400px;
	height: 64px;
	font-size: 16px;
}

/* ===================== LOGO CAROUSEL ===================== */
.agency-ad-accounts .logo-carousel-wrap {
	width: 100%;
	margin-bottom: 60px;
	position: relative;
	padding: 12px 0;
	overflow: hidden;
}

.agency-ad-accounts .logo-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

.agency-ad-accounts .logo-swiper .swiper-slide {
	flex-shrink: 0;
}

.agency-ad-accounts .logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 64px;
	pointer-events: none;
	cursor: default;
	user-select: none;
}

.agency-ad-accounts .logo-item img {
	height: 48px;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Per-brand icon colors */
.agency-ad-accounts .logo-item i {
	font-size: 36px;
}

.agency-ad-accounts .logo-microsoft i {
	color: #00a4ef;
}

.agency-ad-accounts .logo-google i {
	color: #4285f4;
}

.agency-ad-accounts .logo-tiktok i {
	color: #000000;
}

.agency-ad-accounts .logo-meta i {
	color: #0866ff;
}

.agency-ad-accounts .logo-reddit i {
	color: #ff4500;
}

.agency-ad-accounts .logo-snapchat i {
	color: #000000;
	background: #fffc00;
	padding: 4px 6px;
	border-radius: 5px;
}

.agency-ad-accounts .logo-pinterest i {
	color: #e60023;
}

.agency-ad-accounts .logo-amazon i {
	color: #ff9900;
}

.agency-ad-accounts .hero-video-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.agency-ad-accounts .video-thumb {
	width: 814px;
	max-width: 100%;
	height: 420px;
	background: #1a1a2e;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.agency-ad-accounts .video-thumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 60%, #1a1a2e 100%);
	opacity: 0.45;
	z-index: 1;
}

.agency-ad-accounts .play-btn {
	position: relative;
	z-index: 2;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 62px;
	transition: transform 0.2s;
}

.agency-ad-accounts .play-btn:hover {
	transform: scale(1.1);
}

.agency-ad-accounts .play-btn i {
	margin-left: 5px;
}

.agency-ad-accounts .video-label {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.03em;
	flex-wrap: wrap;
}

.agency-ad-accounts .video-label .pub {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 37px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}

/* ===================== VIDEO MODAL ===================== */
.agency-ad-accounts .video-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
	align-items: center;
	justify-content: center;
}

.agency-ad-accounts .video-modal.open {
	display: flex;
}

.agency-ad-accounts .video-modal-inner {
	width: min(860px, 92vw);
	aspect-ratio: 16 / 9;
	position: relative;
}

.agency-ad-accounts .video-modal-inner iframe {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	background: #000;
}

.agency-ad-accounts .video-modal-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	z-index: 10000;
	line-height: 1;
}

/* ===================== HERO INLINE VIDEO ===================== */
.agency-ad-accounts #heroVideo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	z-index: 0;
	pointer-events: none;
}

.agency-ad-accounts .video-thumb.playing #heroVideo {
	z-index: 3;
	pointer-events: auto;
}

.agency-ad-accounts .video-thumb.playing::before {
	display: none;
}

.agency-ad-accounts .video-thumb.playing .play-btn {
	z-index: 4;
	opacity: 0;
	transition: opacity 0.2s;
}

.agency-ad-accounts .video-thumb.playing:hover .play-btn {
	opacity: 1;
}

/* ===================== 4. TRANSFORMATION ===================== */
.agency-ad-accounts .transform-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	padding: 100px 104px;
}

.agency-ad-accounts .transform-section h2 {
	font-size: 48px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 24px;
}

.agency-ad-accounts .transform-sub {
	text-align: center;
	font-size: 18px;
	line-height: 120%;
	margin-bottom: 56px;
}

.agency-ad-accounts .steps-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	position: relative;
	max-width: 1240px;
}

.agency-ad-accounts .step-connector {
	flex: 1;
	height: 2px;
	border-top: 2.5px dashed rgba(240, 136, 45, 0.4);
	margin-top: 120px;
	min-width: 60px;
}

.agency-ad-accounts .step-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 285px;
	padding: 0 16px;
	position: relative;
}

.agency-ad-accounts .step-ring {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	border: 5px solid rgba(240, 136, 45, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	position: relative;
}

.agency-ad-accounts .step-inner {
	width: 56px;
	height: 56px;
	position: absolute;
	top: -30px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.agency-ad-accounts .step-num {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	line-height: 100%;
}

.agency-ad-accounts .step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.agency-ad-accounts .step-icon svg,
.agency-ad-accounts .step-icon img {
	width: 128px;
	height: 128px;
}

.agency-ad-accounts .step-title {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 12px;
	color: var(--black);
}

.agency-ad-accounts .step-desc {
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
}

/* ===================== 5. STATS BAR ===================== */
.agency-ad-accounts .stats-bar {
	background: var(--gradient);
	padding: 72px 104px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.agency-ad-accounts .stat-block {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
}

.agency-ad-accounts .stat-divider {
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.35);
}

.agency-ad-accounts .stat-number {
	font-size: 64px;
	font-weight: 700;
	color: #fff;
	line-height: 100%;
	margin-bottom: 10px;
}

.agency-ad-accounts .stat-label {
	font-size: 18px;
	font-weight: 600;
	color: #FFFFFF;
}

/* ===================== 6. BENEFITS ===================== */
.agency-ad-accounts .benefits-section {
	background: var(--bg-orange);
	padding: 100px 100px;
}

.agency-ad-accounts .benefits-section h2 {
	font-size: 48px;
	font-weight: 500;
	line-height: 100%;
	text-align: center;
	margin-bottom: 24px;
}

.agency-ad-accounts .benefits-sub {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 64px;
}

.agency-ad-accounts .benefits-layout {
	display: grid;
	grid-template-columns: 1fr 300px 1fr;
	gap: 28px;
	align-items: start;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.agency-ad-accounts .benefits-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: left;
}

.agency-ad-accounts .benefit-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s, transform 0.2s;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
}

.agency-ad-accounts .benefit-card:hover {
	box-shadow: 0 8px 32px rgba(240, 136, 45, 0.15);
	transform: translateY(-2px);
}

.agency-ad-accounts .benefit-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-shrink: 0;
}

.agency-ad-accounts .benefit-icon svg,
.agency-ad-accounts .benefit-icon img {
	width: 28px;
	height: 28px;
	display: block;
	overflow: visible;
}

.agency-ad-accounts .benefit-text {
	flex: 1;
}

.agency-ad-accounts .benefit-title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--black);
}

.agency-ad-accounts .benefit-desc {
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
}

.agency-ad-accounts .benefits-video-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.agency-ad-accounts .benefits-video-wrap .vid-person-card {
	position: static;
	border: 2px solid rgba(240, 136, 45, 0.25);
	border-radius: 12px;
	backdrop-filter: blur(8px);

}

.agency-ad-accounts .benefits-video-wrap .vid-person-role,
.agency-ad-accounts .benefits-video-wrap .vid-person-name {
	color: var(--black);
}

.agency-ad-accounts .benefits-video-wrap .vid-person-role {
	color: var(--black);
}

.agency-ad-accounts .benefits-video-wrap .vid-person-avatar {
	background: var(--gradient);
	color: #fff;
	font-size: 13px;
}

.agency-ad-accounts .benefits-video {
	width: 100%;
	aspect-ratio: 9/14;
	background: #1a1a2e;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	max-height: 526px;
}

.agency-ad-accounts .benefits-video::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, #1c2340 0%, #3d1500 100%);
	opacity: 0.45;
	z-index: 1;
}

.agency-ad-accounts #benefitsVideo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	z-index: 0;
	pointer-events: none;
}

.agency-ad-accounts .benefits-video.playing #benefitsVideo {
	z-index: 3;
	pointer-events: auto;
}

.agency-ad-accounts .benefits-video.playing::before,
.agency-ad-accounts .benefits-video.playing .benefits-video-label {
	display: none;
}

.agency-ad-accounts .benefits-video.playing .play-btn {
	z-index: 4;
	display: flex;
	opacity: 0;
	transition: opacity 0.2s;
}

.agency-ad-accounts .benefits-video.playing:hover .play-btn {
	opacity: 1;
}

.agency-ad-accounts .benefits-video .play-btn {
	width: 72px;
	height: 72px;
	font-size: 60px;
	z-index: 2;
}

.agency-ad-accounts .benefits-video-label {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	z-index: 2;
}

.agency-ad-accounts .benefits-section .hero-cta-wrap {
	margin: 32px 0 0;
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

/* ===================== 7. COMPARISON ===================== */
.agency-ad-accounts .comparison-section {
	background: #fff;
	padding: 100px 104px;
}

.agency-ad-accounts .comparison-section h2 {
	font-size: 48px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 12px;
	color: #181818;
}

.agency-ad-accounts .comp-subtitle {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 48px;
}

/* Outer wrapper — centres the table */
.agency-ad-accounts .comp-grid {
	max-width: 860px;
	margin: 0 auto;
	overflow-x: auto;
}

/* Grid row that holds the three columns — rows are shared across all columns */
.agency-ad-accounts .comp-row {
	display: grid;
	grid-template-columns: 200px 312px 300px;
	grid-template-rows: repeat(12, auto);
}

/* Base column — spans all rows and uses subgrid so cells align across columns */
.agency-ad-accounts .comp-col {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: 1 / -1;
}

/* Column 2 — OrangeTrail (gradient background) */
.agency-ad-accounts .comp-col-ot {
	background: linear-gradient(90.99deg, var(--orange-dark) 0.04%, var(--orange) 99.96%);
	border-radius: 16px;
	overflow: hidden;
}

/* Column 3 — Traditional Agencies (width set by grid-template-columns) */

/* Label cells */
.agency-ad-accounts .comp-label-cell {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 16px 20px 16px 0;
	font-weight: 700;
	font-size: 24px;
	color: #181818;
	line-height: 1.4;
}

/* OrangeTrail header cell */
.agency-ad-accounts .comp-ot-cell.comp-ot-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	gap: 0;
}

.agency-ad-accounts .comp-ot-logo-img {
	width: 134px;
	height: 48px;
	display: block;
}

/* OrangeTrail data cells — transparent so column gradient shows */
.agency-ad-accounts .comp-ot-cell {
	flex: 1;
	background: transparent;
	color: #fff;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	border-top: 0 solid rgba(255, 255, 255, 0.12);
}

.agency-ad-accounts .comp-ot-cell.comp-ot-header {
	border-top: none;
}

/* White circle checkmark */
.agency-ad-accounts .comp-check {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 2px solid rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
	font-size: 17px;
	flex-shrink: 0;
	margin-top: 1px;
	align-content: center;
	flex-wrap: wrap;
}

/* Traditional Agencies header */
.agency-ad-accounts .comp-ta-header {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px 0 15px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 5%;
	text-transform: uppercase;
	color: #cccbca;
	text-align: center;
}

/* TA data cells */
.agency-ad-accounts .comp-ta-cell {
	flex: 1;
	/* background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
    linear-gradient(0deg, rgba(24, 24, 24, 0.1), rgba(24, 24, 24, 0.1)); */

	background: linear-gradient(0deg, rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.05));

	margin: 0;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
	line-height: 120%;
}

/* Alternating lighter shade on odd TA data cells */
.agency-ad-accounts .comp-col-ta .comp-ta-cell:nth-child(odd) {
	background: linear-gradient(0deg, rgba(24, 24, 24, 0.1), rgba(24, 24, 24, 0.1));
	;
}

.agency-ad-accounts .comp-col-ta .comp-ta-cell:nth-child(2) {
	border-radius: 0 8px 0 0;
}

.agency-ad-accounts .comp-col-ta .comp-ta-cell:nth-last-child(2) {
	border-radius: 0 0 8px 0;
}

.agency-ad-accounts .comp-col-ta .comp-ta-cell:last-child {
	background: transparent;
}

/* Alternating white overlay on odd OT data cells */
.agency-ad-accounts .comp-col-ot .comp-ot-cell:nth-child(odd):not(.comp-ot-header) {
	background: rgba(255, 255, 255, 0.08);
}

/* Red circle X */
.agency-ad-accounts .comp-cross {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #DF2B2C;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ===================== 8. TESTIMONIALS ===================== */
.agency-ad-accounts .testimonials-section {
	background: url('https://orangetrail.eu/wp-content/uploads/2026/04/testimonials-section-bg.png') no-repeat center center/cover;
	padding: 100px 0;
}

.agency-ad-accounts .testimonials-section h2 {
	font-size: 48px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 12px;
}

.agency-ad-accounts .testimonials-section h2 strong {
	font-weight: 800;
}

.agency-ad-accounts .testimonials-sub {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 48px;
}

/* Video row — portrait 9:16 */
.agency-ad-accounts .video-row {
	display: grid;
	grid-template-columns: repeat(3, 0fr);
	gap: 20px;
	margin-bottom: 40px;
	justify-content: center;
}

.agency-ad-accounts .vid-thumb-sm {
	aspect-ratio: 9/16;
	background: #1a1a2e;
	border-radius: 16px;
	width: 300px;
	height: 526px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.agency-ad-accounts .vid-thumb-sm::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 0;
	opacity: 0.45;
}

.agency-ad-accounts .vid-thumb-video {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	z-index: 0;
	pointer-events: none;
}

.agency-ad-accounts .vid-thumb-sm.playing .vid-thumb-video {
	z-index: 3;
	pointer-events: auto;
}

.agency-ad-accounts .vid-thumb-sm.playing::before,
.agency-ad-accounts .vid-thumb-sm.playing .vid-person-card {
	display: none;
}

.agency-ad-accounts .vid-thumb-sm.playing .play-btn {
	z-index: 4;
	display: flex;
	opacity: 0;
	transition: opacity 0.2s;
}

.agency-ad-accounts .vid-thumb-sm.playing:hover .play-btn {
	opacity: 1;
}

.agency-ad-accounts .vid-thumb-center {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.agency-ad-accounts .vid-thumb-sm .play-btn {
	width: 60px;
	height: 60px;
	font-size: 60px;
	position: relative;
	z-index: 2;
}

/* Person card overlay at bottom of video */
.agency-ad-accounts .vid-person-card {
	position: absolute;
	bottom: 10px;
	left: 12px;
	right: 12px;
	/* background: rgba(255, 255, 255, 0.95); */
	border: 2px solid rgba(240, 136, 45, 0.25);
	border-radius: 10px;
	padding: 10px 12px;
	display: flex;
	backdrop-filter: blur(8px);
	gap: 10px;
	z-index: 3;
}

.agency-ad-accounts .vid-person-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	color: #777;
	flex-shrink: 0;
	overflow: hidden;
}

.agency-ad-accounts .vid-person-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.agency-ad-accounts .vid-person-name {
	font-size: 16px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.3;
}

.agency-ad-accounts .vid-person-role {
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 120%;
}

.agency-ad-accounts .tcard-mobile-list {
	display: none;
}

/* Testimonial card carousel — Swiper */
.agency-ad-accounts .tcard-carousel-wrap {
	width: 100%;
	margin-bottom: 48px;
	overflow: hidden;
}

.agency-ad-accounts .tcard-swiper .swiper-wrapper {
	transition-timing-function: linear;
}

.agency-ad-accounts .tcard-slide {
	width: 400px;
	height: auto;
	box-sizing: border-box;
	padding: 4px 0;
}

/* Individual testimonial card */
.agency-ad-accounts .testimonial-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	width: 400px;
	height: auto;
	flex-shrink: 0;
	box-sizing: border-box;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Badge row */
.agency-ad-accounts .tcard-badges {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
	justify-content: center;
}

.agency-ad-accounts .tbadge {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 5%;
	text-transform: uppercase;
	padding: 5px 6px;
	border-radius: 2px;
	line-height: 120%;
	background: var(--orange);
	color: #fff;
}

.agency-ad-accounts .t-card-quote {
	font-size: 16px;
	line-height: 120%;
	margin: 0;
	margin-bottom: 10px;
	text-align: center;
}

.agency-ad-accounts .t-card-bold {
	font-size: 16px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 14px;
	text-align: center;
}

.agency-ad-accounts .t-card-author {
	font-size: 14px;
	font-weight: 600;
	line-height: 120%;
	text-align: center;
}

.agency-ad-accounts .t-card-author span {
	font-size: 16px;
	font-weight: 700;
	color: #181818;
	margin-bottom: 10px;
}

.agency-ad-accounts .tcard-stars {
	color: var(--orange);
	font-size: 15px;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 8px;
}

/* CTA */
.agency-ad-accounts .testimonials-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.agency-ad-accounts .testimonials-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #555;
}

.agency-ad-accounts .testimonials-rating .stars {
	color: var(--orange);
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 1;
}

/* ===================== 9. PARTNERSHIPS ===================== */
.agency-ad-accounts .partnerships-section {
	background: #fff;
	padding: 100px 0 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: clip;
}

.agency-ad-accounts .partnerships-section h2 {
	font-size: 48px;
	font-weight: 500;
	text-align: center;
	margin: 0;
	margin-bottom: 16px;
}

.agency-ad-accounts .partnerships-section h2 strong {
	font-weight: 800;
}

.agency-ad-accounts .partnerships-sub {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 48px;
}

.agency-ad-accounts .partner-carousel-wrap {
	width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	padding-left: 104px;
}

.agency-ad-accounts .partner-carousel-wrap::-webkit-scrollbar {
	display: none;
}

.agency-ad-accounts .partner-carousel-track {
	display: flex;
	gap: 20px;
	/* width: max-content;*/
	padding-right: 104px;
	justify-content: center;
}

.agency-ad-accounts .partner-photo-card {
	width: 25%;
	height: 440px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	transition: transform 0.2s;
}

.agency-ad-accounts .partner-photo-card:hover {
	transform: translateY(-4px);
}


.agency-ad-accounts .partner-photo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
}

.agency-ad-accounts .partner-location-pill {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border-radius: 4px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.agency-ad-accounts .partner-location-pill i {
	color: var(--orange);
	font-size: 15px;
}

/* ===================== 10. FAQ ===================== */
.agency-ad-accounts .faq-section {
	background: var(--bg-orange-faint);
	padding: 100px 104px;
	display: flex;
	justify-content: center;
}

.agency-ad-accounts .faq-inner {
	display: grid;
	grid-template-columns: 504px 1fr;
	gap: 80px;
	align-items: start;
	max-width: 1440px;
}

.agency-ad-accounts .faq-left h2 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 18px;
	line-height: 1.2;
}

.agency-ad-accounts .faq-left p {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	font-weight: 500;
}

.agency-ad-accounts .faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.agency-ad-accounts .faq-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 3px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: border-color 0.2s;
}

.agency-ad-accounts .faq-item.open {
	border-color: var(--orange);
}

.agency-ad-accounts .faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 24px;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	transition: background 0.15s;
}

.agency-ad-accounts .faq-question:hover {
	background: rgba(255, 79, 1, 0.04);
}

.agency-ad-accounts .faq-question.open {
	color: var(--black);
}

.agency-ad-accounts .faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black);
	font-size: 16px;
	flex-shrink: 0;
	transition: transform 0.25s, color 0.2s;
}

.agency-ad-accounts .faq-question.open .faq-icon {
	color: var(--orange);
	transform: rotate(180deg);
}

.agency-ad-accounts .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.25s ease;
	padding: 0 24px;
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	font-weight: 500;
}

.agency-ad-accounts .faq-answer.open {
	max-height: 300px;
	padding: 0 24px 22px;
}

/* ===================== 11. TEAM ===================== */
.agency-ad-accounts .team-section {
	background: #fff;
	padding: 100px 0;
	text-align: center;
	/* display: flex; */
	flex-direction: column;
	align-items: center;
}

.agency-ad-accounts .team-section h2 {
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 14px;
	padding: 0 104px;
}

.agency-ad-accounts .team-sub {
	font-size: 17px;
	color: #666;
	max-width: 640px;
	margin: 0 auto 56px;
	line-height: 1.65;
}

.agency-ad-accounts .team-carousel-wrap {
	position: relative;
	overflow-x: clip;
}

.agency-ad-accounts .team-carousel-track {
	display: flex;
	gap: 48px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scroll-padding-left: 104px;
	padding: 10px 104px 48px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.agency-ad-accounts .team-carousel-track::-webkit-scrollbar {
	display: none;
}

.agency-ad-accounts .team-member {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	scroll-snap-align: start;
	flex-shrink: 0;
	width: 189px;
	text-align: center;
}

.agency-ad-accounts .team-oval-wrap {
	width: 189px;
	height: 252px;
	border-radius: 9999px;
	overflow: hidden;
	border: 3px solid #efefef;
}

.agency-ad-accounts .team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	filter: grayscale(100%);
}

.agency-ad-accounts .team-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--black);
	margin-top: 4px;
}

.agency-ad-accounts .team-role {
	font-size: 14px;
	color: #888;
	font-weight: 500;
	margin-top: -8px;
}

.agency-ad-accounts .team-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.agency-ad-accounts .team-dot {
	appearance: none;
	border: 0;
	width: 12px;
	height: 8px;
	border-radius: 50%;
	background: #ff4f0126;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, width 0.2s, border-radius 0.2s;
}

.agency-ad-accounts .team-dot.active {
	background: var(--orange);
	width: 20px;
	border-radius: 4px;
}

/* ===================== 12. FINAL CTA ===================== */
.agency-ad-accounts .final-cta {
	background: #fff;
	padding: 0 104px 100px;
}

.agency-ad-accounts .final-cta-card {
	background: linear-gradient(90.99deg, rgba(240, 136, 45, 0.25) 0.04%, rgba(255, 77, 0, 0.251) 99.96%);
	border-radius: 28px;
	padding: 72px 104px;
	display: grid;
	grid-template-columns: 455px 1fr;
	gap: 36px;
	align-items: center;
}

.agency-ad-accounts .final-stars-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.agency-ad-accounts .final-stars-row .stars {
	color: var(--orange);
	font-size: 16px;
	letter-spacing: 2px;
}

.agency-ad-accounts .final-rating-text {
	font-size: 14px;
	font-weight: 500;
}

.agency-ad-accounts .final-cta-left h2 {
	font-size: 40px;
	font-weight: 500;
	color: var(--black);
	line-height: 100%;
	margin-bottom: 32px;
}

.agency-ad-accounts .final-cta-left h2 strong {
	font-weight: 800;
	color: var(--black);
}

.agency-ad-accounts .final-sub {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 32px;
	line-height: 120%;
}

.agency-ad-accounts .final-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	gap: 14px;
}

.agency-ad-accounts .final-bullets li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.agency-ad-accounts .final-bullets li .fi-check {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	flex-shrink: 0;
}

/* Calendly-style booking widget */
.agency-ad-accounts .calendly-mock {
	display: flex;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
	background: #fff;
}

.agency-ad-accounts .cal-left {
	background: #1e3050;
	padding: 28px 24px;
	flex: 0 0 210px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.agency-ad-accounts .cal-logo-circle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.agency-ad-accounts .cal-logo-o {
	font-size: 20px;
	font-weight: 800;
	color: var(--orange);
}

.agency-ad-accounts .cal-brand {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 6px;
	line-height: 1.4;
}

.agency-ad-accounts .cal-month {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.agency-ad-accounts .cal-grid-header {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	width: 100%;
	margin-bottom: 6px;
}

.agency-ad-accounts .cal-grid-header span {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
}

.agency-ad-accounts .cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	width: 100%;
	gap: 2px;
}

.agency-ad-accounts .cal-grid span {
	font-size: 10px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	text-align: center;
	padding: 4px 0;
	border-radius: 50%;
	line-height: 1.4;
}

.agency-ad-accounts .cal-grid .cal-empty {
	visibility: hidden;
}

.agency-ad-accounts .cal-grid .cal-selected {
	background: var(--orange);
	color: #fff;
	font-weight: 700;
	border-radius: 50%;
}

.agency-ad-accounts .cal-grid .cal-avail {
	color: #fff;
	font-weight: 700;
}

.agency-ad-accounts .cal-right {
	flex: 1;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	overflow-y: auto;
	max-height: 360px;
}

.agency-ad-accounts .cal-r-block {
	display: flex;
	flex-direction: column;
}

.agency-ad-accounts .cal-r-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 8px;
}

.agency-ad-accounts .cal-duration-btn {
	background: #e8e8e8;
	border-radius: 6px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--black);
	display: inline-block;
}

.agency-ad-accounts .cal-r-sub {
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1.5;
}

.agency-ad-accounts .cal-timezone {
	font-size: 11px;
	font-weight: 600;
	color: #2563eb;
	margin-bottom: 12px;
	cursor: pointer;
}

.agency-ad-accounts .cal-slots {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.agency-ad-accounts .cal-slot {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--black);
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}

.agency-ad-accounts .cal-slot:hover {
	background: var(--bg-orange);
	border-color: var(--orange);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1280px) {
	.agency-ad-accounts .faq-inner {
		grid-template-columns: 1fr 1fr;
	}

	.agency-ad-accounts .benefits-section {
		padding: 100px 20px;
	}
}

@media (max-width: 1140px) {
	.agency-ad-accounts .benefits-layout {
		grid-template-columns: 1fr;
	}

	.agency-ad-accounts .benefits-video-wrap {
		order: -1;
	}

}

@media (max-width: 1140px) {


	.agency-ad-accounts .trust-bar {
		padding: 10px 24px;
		height: auto;
		flex-wrap: wrap;
		gap: 12px;
		margin-top: 96.1px;
	}

	.agency-ad-accounts .hero {
		padding: 0 15px;
	}

	.agency-ad-accounts .hero h1 {
		font-size: 40px;
	}

	.agency-ad-accounts .hero-cta-wrap .btn-green {
		width: 100%;
		max-width: 400px;
	}

	.agency-ad-accounts .transform-section,
	.agency-ad-accounts .benefits-section,
	.agency-ad-accounts .comparison-section,
	.agency-ad-accounts .testimonials-section,
	.agency-ad-accounts .partnerships-section,
	.agency-ad-accounts .faq-section,
	.agency-ad-accounts .final-cta {
		padding: 60px 32px;
	}

	.agency-ad-accounts .team-section {
		padding: 60px 0;
	}



	.agency-ad-accounts .team-sub {
		padding: 0 24px;
		font-size: 15px;
	}

	.agency-ad-accounts .team-carousel-track {
		padding: 10px 24px 40px;
		gap: 20px;
	}

	.agency-ad-accounts .team-oval-wrap {
		width: 147px;
		height: 195.8px;
	}

	.agency-ad-accounts .team-member {
		width: 147px;
	}

	.agency-ad-accounts .team-name {
		font-size: 16px;
	}

	.agency-ad-accounts .team-role {
		font-size: 12px;
	}

	.agency-ad-accounts .steps-row {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.agency-ad-accounts .step-connector {
		display: none;
	}

	.agency-ad-accounts .stats-bar {
		flex-direction: column;
		gap: 32px;
		padding: 36px 20px;
	}

	.agency-ad-accounts .stat-divider {
		display: none;
	}

	.agency-ad-accounts .benefits-video-wrap .vid-person-card {
		padding: 14px;
	}

	.agency-ad-accounts .stat-block {
		gap: 12px;
	}

	.agency-ad-accounts .video-row,
	.agency-ad-accounts .testimonial-cards {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.agency-ad-accounts .partnerships-section {
		padding: 60px 0 60px 24px;
	}

	.agency-ad-accounts .partner-carousel-wrap {
		padding-left: 24px;
	}

	.agency-ad-accounts .partner-carousel-track {
		padding-right: 24px;
	}

	.agency-ad-accounts .partner-photo-card {
		width: 256px;
		height: 341px;
	}

	.agency-ad-accounts .faq-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.agency-ad-accounts .final-cta {
		padding: 40px 24px 60px;
	}

	.agency-ad-accounts .final-cta-card {
		grid-template-columns: 1fr;
		padding: 40px 28px;
		gap: 40px;
	}

	.agency-ad-accounts .calendly-mock {
		flex-direction: column;
	}

	.agency-ad-accounts .cal-left {
		flex: none;
	}

	.agency-ad-accounts .comparison-section {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 60px 20px;
	}

	.agency-ad-accounts .comp-col-labels {
		display: none;
	}

	.agency-ad-accounts .comp-row {
		grid-template-columns: 1fr 1fr;
	}

	.agency-ad-accounts .comp-ot-cell,
	.agency-ad-accounts .comp-ta-cell {
		font-size: 14px;
		padding: 12px 14px;
		gap: 8px;
	}



	.agency-ad-accounts .comp-ot-logo-img {
		width: 101px;
		height: 36px;
	}


	.agency-ad-accounts .comp-check,
	.agency-ad-accounts .comp-cross {
		width: 20px;
		height: 20px;
		font-size: 10px;
		flex-shrink: 0;
	}



	.agency-ad-accounts .transform-section h2,
	.agency-ad-accounts .benefits-section h2,
	.agency-ad-accounts .comparison-section h2,
	.agency-ad-accounts .testimonials-section h2,
	.agency-ad-accounts .partnerships-section h2,
	.agency-ad-accounts .faq-left h2,
	.agency-ad-accounts .final-cta-left h2,
	.agency-ad-accounts .team-section h2 {
		font-size: 32px;
		padding: 0 20px;
	}

	.agency-ad-accounts .final-cta-left h2,
	.agency-ad-accounts .faq-left h2 {
		padding: 0;
	}

	/* tcard carousel — hide swiper on mobile, show static list */
	.agency-ad-accounts .tcard-carousel-wrap {
		display: none !important;
	}

	.agency-ad-accounts .tcard-mobile-list {
		display: flex !important;
		flex-direction: column;
		gap: 20px;
		padding: 0 16px;
		margin-bottom: 48px;
	}

	.agency-ad-accounts .tcard-mobile-list .testimonial-card {
		width: 100% !important;
		height: auto !important;
		box-sizing: border-box;
		padding: 24px;
	}

	.agency-ad-accounts .benefits-video {
		max-height: 440px;
	}

}

@media (max-width: 600px) {

	.agency-ad-accounts .trust-bar {
		margin-top: 77.189px;

	}

	.agency-ad-accounts .hero h1 {
		font-size: 30px;
	}

	.agency-ad-accounts .hero-sub {
		text-align: left;
		font-size: 16px;
		margin: 0 auto 24px;
	}

	.agency-ad-accounts .logo-item {
		padding: 0;
		width: 100px !important;
	}

	.agency-ad-accounts .video-thumb {
		width: 352px;
		height: 182px;
	}

	.agency-ad-accounts .hero-video-wrap {
		gap: 12px;
	}

	.agency-ad-accounts .video-label {
		display: contents;
		font-size: 14px;
	}

	.agency-ad-accounts .video-label .pub {
		font-size: 28px;
	}

	.agency-ad-accounts .transform-section,
	.agency-ad-accounts .benefits-section,
	.agency-ad-accounts .comparison-section,
	.agency-ad-accounts .testimonials-section,
	.agency-ad-accounts .partnerships-section,
	.agency-ad-accounts .faq-section,
	.agency-ad-accounts .final-cta {
		padding: 60px 20px;
	}


	.agency-ad-accounts .transform-sub,
	.agency-ad-accounts .comp-subtitle,
	.agency-ad-accounts .benefits-sub,
	.agency-ad-accounts .testimonials-sub,
	.agency-ad-accounts .partnerships-sub,
	.agency-ad-accounts .team-sub {
		font-size: 16px;
	}

	.agency-ad-accounts .stat-number {
		font-size: 40px;
	}

	.agency-ad-accounts .step-card {
		max-width: 300px;
	}

	.agency-ad-accounts .step-title {
		font-size: 20px;
	}

	.agency-ad-accounts .step-desc {
		font-size: 14px;
		letter-spacing: -0.02em;
	}

	.agency-ad-accounts .hero-bullets {
		flex-direction: column;
		gap: 14px;
		align-items: flex-start;
	}

	.agency-ad-accounts .trust-item {
		font-size: 14px;
	}

	.agency-ad-accounts .stars-row {
		gap: 8px;
		flex-direction: column;
	}

	.agency-ad-accounts .stars-row span {
		font-size: 14px;
	}

	/* .agency-ad-accounts .avatar-stack img {
    width: 26px;
    height: 26px;
  } */

	.agency-ad-accounts .logo-carousel-wrap {
		margin-bottom: 28px;
	}

	.agency-ad-accounts .team-section {
		padding: 48px 0;
	}



	.agency-ad-accounts .team-carousel-track {
		padding: 10px 20px 36px;
		gap: 16px;
	}

	.agency-ad-accounts .team-member {
		width: 147px;
	}

	.agency-ad-accounts .comparison-section {
		padding: 48px 16px;
	}

	.agency-ad-accounts .comp-col-labels {
		display: none;
	}

	.agency-ad-accounts .comp-ta-header {
		font-size: 14px;
	}

	.agency-ad-accounts .testimonial-card {
		width: 340px;
		height: 242px;
		padding: 24px;
	}

	.agency-ad-accounts .tcard-slide {
		width: 340px !important;
	}

	.agency-ad-accounts .benefit-desc,
	.agency-ad-accounts .vid-person-name {
		font-size: 14px;
	}

	.agency-ad-accounts .vid-person-role {
		font-size: 12px;
	}

	.agency-ad-accounts .benefit-title {
		font-size: 20px;
	}

	.agency-ad-accounts .benefit-desc {
		letter-spacing: -0.02em;
	}

	.agency-ad-accounts .vid-thumb-sm {
		width: 100%;
		height: 480px;
	}


}