/*
 * Anabia Social Media Service Widgets
 * Scoped styles only. No global theme resets.
 */

.at-smm-widget,
.at-smm-widget * {
	box-sizing: border-box;
}

.at-smm-widget {
	--at-smm-text: #111111;
	--at-smm-muted: #626262;
	--at-smm-accent: #29c7f6;
	position: relative;
	width: 100%;
	margin: 0;
	color: var(--at-smm-text);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	isolation: isolate;
	overflow: hidden;
}

.at-smm-widget a {
	color: inherit;
	text-decoration: none;
}

.at-smm-widget img {
	display: block;
	max-width: 100%;
}

.at-smm-widget button,
.at-smm-widget input,
.at-smm-widget textarea,
.at-smm-widget select {
	font: inherit;
}

.at-smm-container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	z-index: 2;
}

.at-smm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: var(--at-smm-text);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.at-smm-eyebrow__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--at-smm-accent);
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--at-smm-accent) 16%, transparent);
}

.at-smm-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
	align-items: end;
	gap: clamp(35px, 6vw, 110px);
	margin-bottom: clamp(45px, 6vw, 88px);
}

.at-smm-section-heading h2,
.at-smm-widget h1,
.at-smm-widget h2,
.at-smm-widget h3,
.at-smm-widget p {
	margin-top: 0;
}

.at-smm-section-heading h2 {
	max-width: 850px;
	margin-bottom: 0;
	font-size: clamp(36px, 4.1vw, 58px);
	font-weight: 650;
	letter-spacing: -.05em;
	line-height: 1.02;
}

.at-smm-section-heading > p {
	max-width: 530px;
	margin: 0;
	color: var(--at-smm-muted);
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.75;
}

.at-smm-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	transition: transform .35s cubic-bezier(.2,.8,.2,1), background-color .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
	will-change: transform;
}

.at-smm-button:hover {
	transform: translateY(-3px);
}

.at-smm-button:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--at-smm-accent) 55%, white);
	outline-offset: 4px;
}

.at-smm-button--primary {
	background: var(--at-smm-accent);
	color: #071116 !important;
	box-shadow: 0 18px 42px color-mix(in srgb, var(--at-smm-accent) 22%, transparent);
}

.at-smm-button--primary:hover {
	box-shadow: 0 24px 56px color-mix(in srgb, var(--at-smm-accent) 32%, transparent);
}

.at-smm-button--ghost {
	border-color: color-mix(in srgb, var(--at-smm-text) 32%, transparent);
	background: transparent;
	color: var(--at-smm-text) !important;
}

.at-smm-button--ghost:hover {
	border-color: var(--at-smm-text);
	background: color-mix(in srgb, var(--at-smm-text) 8%, transparent);
}

.at-smm-button__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255,255,255,.72);
	font-size: 15px;
	transition: transform .35s ease;
}

.at-smm-button:hover .at-smm-button__arrow {
	transform: rotate(45deg);
}

/* Reveal animation. */
.at-smm-has-animation [data-at-reveal] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
	transition-delay: var(--at-delay, 0ms);
}

.at-smm-has-animation [data-at-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* 01 — Hero */
.at-smm-hero {
	background: #111111;
	color: var(--at-smm-text);
}

.at-smm-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--at-smm-accent) 12%, transparent), transparent 24%),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: auto, 76px 76px, 76px 76px;
	pointer-events: none;
	z-index: 0;
}

.at-smm-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
	align-items: center;
	gap: clamp(48px, 6vw, 110px);
	min-height: inherit;
}

.at-smm-hero__content {
	position: relative;
	z-index: 4;
}

.at-smm-hero__title {
	max-width: 760px;
	margin: 0 0 28px;
	font-size: clamp(44px, 5.4vw, 76px);
	font-weight: 650;
	letter-spacing: -.06em;
	line-height: .98;
}

.at-smm-hero__title span,
.at-smm-hero__title strong {
	color: var(--at-smm-accent);
	font-weight: inherit;
}

.at-smm-hero__description {
	max-width: 630px;
	margin: 0 0 34px;
	color: var(--at-smm-muted);
	font-size: clamp(16px, 1.28vw, 19px);
	line-height: 1.72;
}

.at-smm-hero__description > :last-child {
	margin-bottom: 0;
}

.at-smm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.at-smm-hero__metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 22px 42px;
	margin-top: clamp(42px, 6vw, 72px);
	padding-top: 26px;
	border-top: 1px solid rgba(255,255,255,.14);
}

.at-smm-hero__metric {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.at-smm-hero__metric strong {
	font-size: clamp(25px, 2.2vw, 34px);
	font-weight: 650;
	letter-spacing: -.04em;
	line-height: 1;
}

.at-smm-hero__metric span {
	color: var(--at-smm-muted);
	font-size: 12px;
	letter-spacing: .03em;
}

.at-smm-hero__visual {
	position: relative;
	min-height: clamp(460px, 55vw, 690px);
}

.at-smm-hero__image-wrap {
	position: absolute;
	inset: 4% 0 5% 8%;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 34px 90px rgba(0,0,0,.45);
	transform: translate3d(var(--at-parallax-x, 0), var(--at-parallax-y, 0), 0);
	transition: transform .18s ease-out;
}

.at-smm-hero__image-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,.14);
	z-index: 3;
	pointer-events: none;
}

.at-smm-hero__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.at-smm-hero__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,.02), rgba(0,0,0,.35));
}

.at-smm-hero__circle {
	position: absolute;
	z-index: 4;
	border-radius: 50%;
	background: var(--at-smm-accent);
	mix-blend-mode: screen;
	transform: translate3d(var(--at-float-x, 0), var(--at-float-y, 0), 0);
	transition: transform .22s ease-out;
}

.at-smm-hero__circle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(0,0,0,.35);
}

.at-smm-hero__circle--one {
	left: -5%;
	top: 22%;
	width: clamp(100px, 12vw, 170px);
	height: clamp(100px, 12vw, 170px);
}

.at-smm-hero__circle--two {
	left: -1%;
	top: 47%;
	width: clamp(82px, 9vw, 132px);
	height: clamp(82px, 9vw, 132px);
	opacity: .94;
}

.at-smm-hero__floating-label {
	position: absolute;
	right: 1%;
	bottom: 1%;
	z-index: 5;
	padding: 12px 17px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	background: rgba(10,10,10,.82);
	box-shadow: 0 14px 36px rgba(0,0,0,.3);
	backdrop-filter: blur(14px);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.at-smm-hero__scribble {
	position: absolute;
	right: -6%;
	top: 8%;
	z-index: 5;
	width: clamp(90px, 10vw, 145px);
	color: var(--at-smm-accent);
	transform: rotate(-8deg);
}

/* 02 — Proof */
.at-smm-proof {
	background: #f7f7f3;
}

.at-smm-proof__top {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-bottom: 34px;
}

.at-smm-proof__heading {
	flex: 0 0 auto;
	margin: 0;
	font-size: clamp(15px, 1.3vw, 19px);
	font-weight: 650;
	letter-spacing: -.02em;
	text-align: center;
}

.at-smm-proof__line {
	flex: 1;
	height: 1px;
	background: color-mix(in srgb, var(--at-smm-text) 14%, transparent);
}

.at-smm-proof__logos {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid color-mix(in srgb, var(--at-smm-text) 12%, transparent);
	border-left: 1px solid color-mix(in srgb, var(--at-smm-text) 12%, transparent);
}

.at-smm-proof__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 104px;
	padding: 22px;
	border-right: 1px solid color-mix(in srgb, var(--at-smm-text) 12%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--at-smm-text) 12%, transparent);
	background: rgba(255,255,255,.55);
	transition: background-color .3s ease, transform .3s ease;
}

.at-smm-proof__logo:hover {
	background: #fff;
}

.at-smm-proof__logo img {
	max-width: 150px;
	max-height: 42px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .72;
	transition: filter .3s ease, opacity .3s ease;
}

.at-smm-proof__logo:hover img {
	filter: grayscale(0);
	opacity: 1;
}

.at-smm-proof__logo > span {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.02em;
	text-align: center;
}

.at-smm-proof__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: clamp(48px, 6vw, 80px);
	background: color-mix(in srgb, var(--at-smm-text) 13%, transparent);
}

.at-smm-proof__metric {
	min-height: 170px;
	padding: clamp(24px, 3vw, 42px);
	background: inherit;
	background-color: #f7f7f3;
}

.at-smm-proof__metric strong {
	display: block;
	margin-bottom: 15px;
	color: var(--at-smm-accent);
	font-size: clamp(35px, 4.1vw, 56px);
	font-weight: 650;
	letter-spacing: -.06em;
	line-height: .95;
}

.at-smm-proof__metric span {
	color: var(--at-smm-muted);
	font-size: 14px;
}

/* 03 — Services */
.at-smm-services {
	background: #f7f7f3;
}

.at-smm-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.at-smm-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 340px;
	padding: clamp(26px, 3vw, 40px);
	border: 1px solid color-mix(in srgb, var(--at-smm-text) 12%, transparent);
	border-radius: 2px;
	background: #fff;
	color: var(--at-smm-text);
	overflow: hidden;
	transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .4s ease;
}

.at-smm-service-card::before {
	content: "";
	position: absolute;
	inset: auto -30% -55% auto;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: var(--at-smm-accent);
	opacity: 0;
	transform: scale(.5);
	transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}

.at-smm-service-card:hover {
	transform: translateY(-8px);
	border-color: color-mix(in srgb, var(--at-smm-accent) 55%, transparent);
	box-shadow: 0 24px 60px rgba(20,20,20,.1);
}

.at-smm-service-card:hover::before {
	opacity: .13;
	transform: scale(1);
}

.at-smm-service-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(58px, 7vw, 92px);
}

.at-smm-service-card__number {
	color: var(--at-smm-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
}

.at-smm-service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--at-smm-accent) 18%, transparent);
	color: var(--at-smm-text);
	font-size: 18px;
}

.at-smm-service-card h3 {
	position: relative;
	z-index: 2;
	margin-bottom: 14px;
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 650;
	letter-spacing: -.04em;
	line-height: 1.08;
}

.at-smm-service-card p {
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
	color: var(--at-smm-muted);
	font-size: 14px;
	line-height: 1.7;
}

.at-smm-service-card__arrow {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-top: auto;
	border: 1px solid color-mix(in srgb, var(--at-smm-text) 18%, transparent);
	border-radius: 50%;
	font-size: 18px;
	transition: transform .35s ease, background-color .35s ease, border-color .35s ease;
}

.at-smm-service-card:hover .at-smm-service-card__arrow {
	border-color: var(--at-smm-accent);
	background: var(--at-smm-accent);
	transform: rotate(45deg);
}

/* 04 — Campaigns */
.at-smm-campaigns {
	background: #111111;
	color: var(--at-smm-text);
}

.at-smm-campaigns::after {
	content: "";
	position: absolute;
	right: -15%;
	top: 5%;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 50%;
	box-shadow: 0 0 0 90px rgba(255,255,255,.02), 0 0 0 180px rgba(255,255,255,.015);
	pointer-events: none;
}

.at-smm-campaigns__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.at-smm-campaign-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	min-height: 430px;
	border: 1px solid rgba(255,255,255,.1);
	background: #1a1a1a;
	overflow: hidden;
}

.at-smm-campaign-card--reverse {
	grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.at-smm-campaign-card--reverse .at-smm-campaign-card__media {
	order: 2;
}

.at-smm-campaign-card__media {
	position: relative;
	min-height: 430px;
	overflow: hidden;
}

.at-smm-campaign-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(0,0,0,.22));
}

.at-smm-campaign-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02) translate3d(var(--at-parallax-x, 0), var(--at-parallax-y, 0), 0);
	transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.at-smm-campaign-card:hover .at-smm-campaign-card__media img {
	transform: scale(1.07) translate3d(var(--at-parallax-x, 0), var(--at-parallax-y, 0), 0);
}

.at-smm-campaign-card__index {
	position: absolute;
	left: 22px;
	top: 22px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--at-smm-accent);
	color: #071116;
	font-size: 12px;
	font-weight: 700;
}

.at-smm-campaign-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 5vw, 72px);
}

.at-smm-campaign-card__platform {
	display: inline-block;
	margin-bottom: 28px;
	color: var(--at-smm-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.at-smm-campaign-card h3 {
	margin-bottom: 20px;
	font-size: clamp(30px, 3.2vw, 48px);
	font-weight: 650;
	letter-spacing: -.05em;
	line-height: 1.02;
}

.at-smm-campaign-card p {
	margin-bottom: 32px;
	color: var(--at-smm-muted);
	font-size: 15px;
	line-height: 1.75;
}

.at-smm-campaign-card__result {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: 13px;
	font-weight: 700;
}

.at-smm-campaign-card__result span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--at-smm-accent);
	box-shadow: 0 0 0 6px color-mix(in srgb, var(--at-smm-accent) 15%, transparent);
}

/* 05 — Process */
.at-smm-process {
	background: #f7f7f3;
}

.at-smm-process__timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	padding-top: 34px;
}

.at-smm-process__track {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: color-mix(in srgb, var(--at-smm-text) 12%, transparent);
	overflow: hidden;
}

.at-smm-process__track span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--at-smm-accent);
	transition: width 1.4s cubic-bezier(.2,.8,.2,1) .2s;
}

.at-smm-process.is-in-view .at-smm-process__track span {
	width: 100%;
}

.at-smm-process-step {
	position: relative;
	min-height: 360px;
	padding: 30px 26px;
	border: 1px solid color-mix(in srgb, var(--at-smm-text) 12%, transparent);
	background: rgba(255,255,255,.58);
	transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.at-smm-process-step::before {
	content: "";
	position: absolute;
	top: -41px;
	left: 26px;
	width: 14px;
	height: 14px;
	border: 3px solid #f7f7f3;
	border-radius: 50%;
	background: var(--at-smm-accent);
	box-shadow: 0 0 0 1px var(--at-smm-accent);
}

.at-smm-process-step:hover {
	transform: translateY(-7px);
	background: #fff;
	box-shadow: 0 24px 56px rgba(20,20,20,.08);
}

.at-smm-process-step__number {
	margin-bottom: clamp(55px, 6vw, 86px);
	color: var(--at-smm-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .12em;
}

.at-smm-process-step h3 {
	margin-bottom: 14px;
	font-size: clamp(23px, 2vw, 29px);
	font-weight: 650;
	letter-spacing: -.04em;
	line-height: 1.1;
}

.at-smm-process-step p {
	margin-bottom: 26px;
	color: var(--at-smm-muted);
	font-size: 14px;
	line-height: 1.7;
}

.at-smm-process-step__content > span {
	display: inline-block;
	padding-top: 14px;
	border-top: 1px solid color-mix(in srgb, var(--at-smm-text) 13%, transparent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* 06 — Results */
.at-smm-results {
	background: #111111;
	color: var(--at-smm-text);
}

.at-smm-results__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	margin-bottom: clamp(45px, 6vw, 80px);
}

.at-smm-results__heading {
	max-width: 880px;
	margin: 0;
	font-size: clamp(36px, 4.1vw, 58px);
	font-weight: 650;
	letter-spacing: -.05em;
	line-height: 1.02;
}

.at-smm-results__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
	gap: 24px;
}

.at-smm-results__story,
.at-smm-results__quote {
	border: 1px solid rgba(255,255,255,.1);
	background: #1a1a1a;
}

.at-smm-results__story {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
	min-height: 580px;
	overflow: hidden;
}

.at-smm-results__story-media {
	position: relative;
	min-height: 580px;
	overflow: hidden;
}

.at-smm-results__story-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.48));
}

.at-smm-results__story-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03) translate3d(var(--at-parallax-x, 0), var(--at-parallax-y, 0), 0);
	transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.at-smm-results__story:hover .at-smm-results__story-media img {
	transform: scale(1.08) translate3d(var(--at-parallax-x, 0), var(--at-parallax-y, 0), 0);
}

.at-smm-results__story-media > span {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 3;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--at-smm-accent);
	color: #071116;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.at-smm-results__story-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 4.5vw, 64px);
}

.at-smm-results__story h3 {
	margin-bottom: 20px;
	font-size: clamp(28px, 3vw, 43px);
	font-weight: 650;
	letter-spacing: -.05em;
	line-height: 1.05;
}

.at-smm-results__story p {
	margin-bottom: 36px;
	color: var(--at-smm-muted);
	font-size: 15px;
	line-height: 1.74;
}

.at-smm-results__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: auto;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.at-smm-results__stats strong {
	display: block;
	margin-bottom: 8px;
	color: var(--at-smm-accent);
	font-size: clamp(24px, 2.2vw, 34px);
	font-weight: 650;
	letter-spacing: -.05em;
	line-height: 1;
}

.at-smm-results__stats span {
	display: block;
	color: var(--at-smm-muted);
	font-size: 11px;
	line-height: 1.45;
}

.at-smm-results__quote {
	display: flex;
	flex-direction: column;
	min-height: 580px;
	padding: clamp(34px, 4vw, 58px);
}

.at-smm-results__quote-mark {
	margin-bottom: 55px;
	color: var(--at-smm-accent);
	font-size: 72px;
	font-weight: 500;
	line-height: .6;
}

.at-smm-results__quote blockquote {
	margin: 0;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.35;
}

.at-smm-results__person {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.at-smm-results__person img,
.at-smm-results__person-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--at-smm-accent);
	color: #071116;
	font-size: 16px;
	font-weight: 700;
}

.at-smm-results__person strong,
.at-smm-results__person span {
	display: block;
}

.at-smm-results__person strong {
	font-size: 14px;
	font-weight: 700;
}

.at-smm-results__person div > span {
	color: var(--at-smm-muted);
	font-size: 11px;
}

/* 07 — FAQ + CTA */
.at-smm-faq-cta {
	background: #f7f7f3;
}

.at-smm-faq-cta__layout {
	display: grid;
	grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
	gap: clamp(48px, 8vw, 130px);
	align-items: start;
}

.at-smm-faq-cta__intro {
	position: sticky;
	top: 110px;
}

.at-smm-faq-cta__heading {
	margin: 0 0 25px;
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 650;
	letter-spacing: -.05em;
	line-height: 1.02;
}

.at-smm-faq-cta__intro > p {
	max-width: 460px;
	margin-bottom: 30px;
	color: var(--at-smm-muted);
	font-size: 15px;
	line-height: 1.75;
}

.at-smm-faq-cta__arrow {
	font-size: 50px;
	line-height: 1;
	transform: rotate(-9deg);
}

.at-smm-faq {
	border-top: 1px solid color-mix(in srgb, var(--at-smm-text) 16%, transparent);
}

.at-smm-faq__item {
	border-bottom: 1px solid color-mix(in srgb, var(--at-smm-text) 16%, transparent);
}

.at-smm-faq__question {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 28px 0;
	border: 0;
	background: none;
	color: var(--at-smm-text);
	font-size: clamp(17px, 1.6vw, 22px);
	font-weight: 650;
	letter-spacing: -.03em;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
}

.at-smm-faq__question:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--at-smm-accent) 55%, white);
	outline-offset: 5px;
}

.at-smm-faq__question i {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	border: 1px solid color-mix(in srgb, var(--at-smm-text) 20%, transparent);
	border-radius: 50%;
	transition: transform .35s ease, background-color .35s ease, border-color .35s ease;
}

.at-smm-faq__question i::before,
.at-smm-faq__question i::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 1px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.at-smm-faq__question i::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform .35s ease;
}

.at-smm-faq__item.is-open .at-smm-faq__question i {
	border-color: var(--at-smm-accent);
	background: var(--at-smm-accent);
	transform: rotate(180deg);
}

.at-smm-faq__item.is-open .at-smm-faq__question i::after {
	transform: translate(-50%, -50%) rotate(0);
}

.at-smm-faq__answer {
	overflow: hidden;
}

.at-smm-faq__answer > div {
	max-width: 760px;
	padding: 0 60px 28px 0;
	color: var(--at-smm-muted);
	font-size: 15px;
	line-height: 1.75;
}

.at-smm-faq__answer > div > :last-child {
	margin-bottom: 0;
}

.at-smm-faq-cta__cta {
	--at-smm-cta-text: #ffffff;
	position: relative;
	margin-top: clamp(72px, 9vw, 130px);
	padding: clamp(48px, 7vw, 100px);
	background: #111111;
	color: var(--at-smm-cta-text);
	overflow: hidden;
}

.at-smm-faq-cta__cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 64px 64px;
	pointer-events: none;
}

.at-smm-faq-cta__cta-content {
	position: relative;
	z-index: 3;
	max-width: 900px;
}

.at-smm-faq-cta__kicker {
	display: inline-block;
	margin-bottom: 25px;
	color: var(--at-smm-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.at-smm-faq-cta__cta h3 {
	max-width: 930px;
	margin-bottom: 36px;
	font-size: clamp(34px, 4.4vw, 62px);
	font-weight: 650;
	letter-spacing: -.055em;
	line-height: 1.02;
}

.at-smm-faq-cta__cta small {
	display: block;
	margin-top: 18px;
	color: color-mix(in srgb, var(--at-smm-cta-text) 64%, transparent);
	font-size: 11px;
}

.at-smm-faq-cta__orb {
	position: absolute;
	z-index: 1;
	border-radius: 50%;
	background: var(--at-smm-accent);
	transform: translate3d(var(--at-float-x, 0), var(--at-float-y, 0), 0);
	transition: transform .22s ease-out;
}

.at-smm-faq-cta__orb--one {
	right: 8%;
	top: 15%;
	width: 170px;
	height: 170px;
	opacity: .88;
}

.at-smm-faq-cta__orb--two {
	right: -3%;
	bottom: -18%;
	width: 280px;
	height: 280px;
	opacity: .22;
}

/* Tablet */
@media (max-width: 1100px) {
	.at-smm-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
		gap: 42px;
	}

	.at-smm-hero__title {
		font-size: clamp(42px, 6vw, 64px);
	}

	.at-smm-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.at-smm-process__timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
		padding-top: 0;
	}

	.at-smm-process__track,
	.at-smm-process-step::before {
		display: none;
	}

	.at-smm-results__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.at-smm-results__quote {
		min-height: 430px;
	}
}

@media (max-width: 900px) {
	.at-smm-section-heading {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 22px;
	}

	.at-smm-hero__grid {
		grid-template-columns: 1fr;
	}

	.at-smm-hero__visual {
		min-height: 580px;
	}

	.at-smm-hero__image-wrap {
		inset: 4% 1% 5% 8%;
	}

	.at-smm-proof__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.at-smm-campaign-card,
	.at-smm-campaign-card--reverse {
		grid-template-columns: 1fr;
	}

	.at-smm-campaign-card--reverse .at-smm-campaign-card__media {
		order: 0;
	}

	.at-smm-campaign-card__media {
		min-height: 380px;
	}

	.at-smm-results__story {
		grid-template-columns: 1fr;
	}

	.at-smm-results__story-media {
		min-height: 430px;
	}

	.at-smm-faq-cta__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.at-smm-faq-cta__intro {
		position: relative;
		top: auto;
	}

	.at-smm-faq-cta__arrow {
		display: none;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.at-smm-widget {
		font-size: 15px;
	}

	.at-smm-eyebrow {
		margin-bottom: 18px;
		font-size: 10px;
	}

	.at-smm-button {
		width: 100%;
		min-height: 52px;
	}

	.at-smm-hero__title {
		font-size: clamp(40px, 12vw, 56px);
		line-height: 1;
	}

	.at-smm-hero__description {
		font-size: 16px;
	}

	.at-smm-hero__actions {
		flex-direction: column;
	}

	.at-smm-hero__metrics {
		gap: 18px;
	}

	.at-smm-hero__metric {
		flex: 1 1 calc(50% - 12px);
	}

	.at-smm-hero__visual {
		min-height: 440px;
	}

	.at-smm-hero__image-wrap {
		inset: 3% 0 5% 5%;
	}

	.at-smm-hero__circle--one {
		left: -8%;
		top: 20%;
	}

	.at-smm-hero__circle--two {
		left: -2%;
		top: 50%;
	}

	.at-smm-hero__scribble {
		right: -8%;
	}

	.at-smm-hero__floating-label {
		right: 1%;
		max-width: 84%;
		font-size: 9px;
		text-align: center;
	}

	.at-smm-proof__top {
		gap: 12px;
	}

	.at-smm-proof__line {
		display: none;
	}

	.at-smm-proof__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.at-smm-proof__logo {
		min-height: 88px;
		padding: 16px;
	}

	.at-smm-proof__metrics {
		grid-template-columns: 1fr;
	}

	.at-smm-proof__metric {
		min-height: auto;
	}

	.at-smm-services__grid,
	.at-smm-process__timeline {
		grid-template-columns: 1fr;
	}

	.at-smm-service-card {
		min-height: 310px;
	}

	.at-smm-service-card__top {
		margin-bottom: 50px;
	}

	.at-smm-campaign-card__media {
		min-height: 300px;
	}

	.at-smm-campaign-card__content {
		padding: 30px 24px;
	}

	.at-smm-campaign-card h3 {
		font-size: 31px;
	}

	.at-smm-process-step {
		min-height: 310px;
	}

	.at-smm-results__story-media {
		min-height: 330px;
	}

	.at-smm-results__story-content,
	.at-smm-results__quote {
		padding: 28px 22px;
	}

	.at-smm-results__stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.at-smm-results__quote {
		min-height: 420px;
	}

	.at-smm-faq__question {
		padding: 23px 0;
		font-size: 17px;
	}

	.at-smm-faq__answer > div {
		padding-right: 0;
	}

	.at-smm-faq-cta__cta {
		padding: 44px 24px;
	}

	.at-smm-faq-cta__cta h3 {
		font-size: 36px;
	}

	.at-smm-faq-cta__orb--one {
		right: -14%;
		top: 9%;
		width: 130px;
		height: 130px;
		opacity: .5;
	}
}

@media (max-width: 420px) {
	.at-smm-proof__logos {
		grid-template-columns: 1fr;
	}

	.at-smm-hero__metric {
		flex-basis: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.at-smm-widget *,
	.at-smm-widget *::before,
	.at-smm-widget *::after {
		scroll-behavior: auto !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}

	.at-smm-has-animation [data-at-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* ================================================================
 * Version 1.1.0 — full-width, typography and premium visual upgrade
 * ================================================================ */

.at-smm-widget {
	--at-smm-heading: var(--at-smm-text);
	--at-smm-border: rgba(17, 17, 17, .14);
	font-family: "DM Sans", Arial, sans-serif !important;
	text-rendering: optimizeLegibility;
}

/* Prevent theme heading styles from overriding the Elementor color controls. */
.at-smm-widget h1,
.at-smm-widget h2,
.at-smm-widget h3,
.at-smm-widget h4,
.at-smm-widget h5,
.at-smm-widget h6,
.at-smm-widget .at-smm-hero__title {
	color: var(--at-smm-heading) !important;
	font-family: inherit !important;
}

.at-smm-widget p,
.at-smm-widget li,
.at-smm-widget blockquote,
.at-smm-widget button,
.at-smm-widget a,
.at-smm-widget span,
.at-smm-widget strong,
.at-smm-widget small {
	font-family: inherit;
}

/* Edge-to-edge background while keeping the inner content boxed. */
.elementor-widget.at-smm-full-bleed-yes,
.elementor-element.at-smm-full-bleed-yes {
	position: relative;
	max-width: none;
}

.elementor-widget.at-smm-full-bleed-yes > .elementor-widget-container,
.elementor-element.at-smm-full-bleed-yes > .elementor-widget-container {
	overflow: visible;
}

.at-smm-full-bleed-yes .at-smm-widget {
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-right: -50vw;
	margin-left: -50vw;
}

.at-smm-container {
	max-width: 1360px;
}

.at-smm-section-heading {
	gap: clamp(30px, 5vw, 80px);
	margin-bottom: clamp(42px, 5vw, 72px);
}

.at-smm-section-heading h2,
.at-smm-results__heading,
.at-smm-faq-cta__heading {
	font-size: clamp(34px, 3.6vw, 50px);
	line-height: 1.06;
	letter-spacing: -.045em;
}

.at-smm-section-heading > p {
	font-size: clamp(15px, 1.1vw, 17px);
	line-height: 1.7;
}

.at-smm-button {
	min-height: 52px;
	padding: 13px 22px;
	font-size: 14px;
}

/* Premium hero. */
.at-smm-hero {
	background-color: #0b1012;
	color: var(--at-smm-text);
}

.at-smm-hero::before {
	background:
		radial-gradient(circle at 8% 10%, color-mix(in srgb, var(--at-smm-accent) 15%, transparent), transparent 30%),
		radial-gradient(circle at 92% 90%, rgba(255,255,255,.055), transparent 28%),
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
		linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: auto, auto, 72px 72px, 72px 72px;
}

.at-smm-hero::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 50%;
	width: 1px;
	background: linear-gradient(transparent 4%, rgba(255,255,255,.09) 28%, rgba(255,255,255,.09) 72%, transparent 96%);
	pointer-events: none;
	z-index: 1;
}

.at-smm-hero__grid {
	grid-template-columns: minmax(0, .94fr) minmax(400px, 1.06fr);
	gap: clamp(54px, 6vw, 94px);
}

.at-smm-hero__content {
	padding: 28px 0;
}

.at-smm-hero__title {
	max-width: 650px;
	margin-bottom: 24px;
	font-size: clamp(42px, 5vw, 62px);
	font-weight: 650;
	line-height: 1.02;
	letter-spacing: -.055em;
	text-wrap: balance;
}

.at-smm-hero__title span,
.at-smm-hero__title strong,
.at-smm-hero__title em {
	color: var(--at-smm-accent) !important;
	font-style: normal;
}

.at-smm-hero__description {
	max-width: 600px;
	margin-bottom: 30px;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 1.7;
}

.at-smm-hero__metrics {
	gap: 20px 34px;
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: 24px;
	border-top-color: var(--at-smm-border);
}

.at-smm-hero__metric strong {
	color: var(--at-smm-heading) !important;
	font-size: clamp(24px, 2vw, 29px);
}

.at-smm-hero__visual {
	position: relative;
	min-height: 570px;
	isolation: isolate;
}

.at-smm-hero__image-wrap {
	position: absolute;
	inset: 0 0 0 42px;
	z-index: 2;
	border: 1px solid var(--at-smm-border);
	border-radius: 26px;
	background: #20282c;
	box-shadow: 0 36px 100px rgba(0,0,0,.42);
	overflow: hidden;
}

.at-smm-hero__image-wrap::before {
	border-color: rgba(255,255,255,.11);
	border-radius: inherit;
}

.at-smm-hero__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.015);
	transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.at-smm-hero__visual:hover .at-smm-hero__image-wrap img {
	transform: scale(1.055);
}

.at-smm-hero__image-overlay {
	background: linear-gradient(145deg, transparent 30%, rgba(5,10,12,.28) 100%);
}

.at-smm-hero__visual-badge {
	position: absolute;
	top: 22px;
	left: 22px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: calc(100% - 44px);
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,.17);
	border-radius: 999px;
	background: rgba(8,13,15,.72);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(14px);
}

.at-smm-hero__visual-badge span {
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--at-smm-accent);
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--at-smm-accent) 17%, transparent);
}

.at-smm-hero__floating-label {
	right: 22px;
	bottom: 22px;
	padding: 11px 15px;
	border-color: rgba(255,255,255,.17);
	background: rgba(8,13,15,.76);
	color: #fff;
	font-size: 10px;
	backdrop-filter: blur(14px);
}

.at-smm-hero__stat-card {
	position: absolute;
	left: 0;
	bottom: 48px;
	z-index: 6;
	display: flex;
	flex-direction: column;
	width: min(190px, 38%);
	padding: 20px;
	border-radius: 18px;
	background: #fff;
	color: #0b1012;
	box-shadow: 0 26px 70px rgba(0,0,0,.34);
	transform: translate3d(var(--at-float-x, 0), var(--at-float-y, 0), 0);
	transition: transform .22s ease-out;
}

.at-smm-hero__stat-card strong {
	color: inherit !important;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 700;
	line-height: .95;
	letter-spacing: -.055em;
}

.at-smm-hero__stat-card span {
	margin-top: 10px;
	color: inherit;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
	opacity: .68;
}

.at-smm-hero__orb {
	position: absolute;
	z-index: 4;
	border-radius: 50%;
	background: var(--at-smm-accent);
	box-shadow: 0 20px 60px color-mix(in srgb, var(--at-smm-accent) 22%, transparent);
	transform: translate3d(var(--at-float-x, 0), var(--at-float-y, 0), 0);
	transition: transform .22s ease-out;
}

.at-smm-hero__orb--one {
	top: 17%;
	left: 3px;
	width: clamp(72px, 8vw, 112px);
	height: clamp(72px, 8vw, 112px);
	opacity: .93;
}

.at-smm-hero__orb--two {
	right: -36px;
	bottom: 8%;
	width: clamp(110px, 14vw, 190px);
	height: clamp(110px, 14vw, 190px);
	opacity: .17;
	z-index: 1;
}

.at-smm-hero-image-left .at-smm-hero__visual {
	order: -1;
}

.at-smm-hero-image-left .at-smm-hero__image-wrap {
	inset: 0 42px 0 0;
}

.at-smm-hero-image-left .at-smm-hero__stat-card {
	right: 0;
	left: auto;
}

.at-smm-hero-image-left .at-smm-hero__orb--one {
	right: 3px;
	left: auto;
}

/* Consistent controls, borders and more restrained typography. */
.at-smm-proof__logo,
.at-smm-service-card,
.at-smm-campaign-card,
.at-smm-process-step,
.at-smm-results__story,
.at-smm-results__quote,
.at-smm-faq,
.at-smm-faq__item,
.at-smm-faq__question i {
	border-color: var(--at-smm-border);
}

.at-smm-proof__metrics,
.at-smm-process__track {
	background-color: var(--at-smm-border);
}

.at-smm-proof__heading {
	color: var(--at-smm-heading) !important;
}

.at-smm-proof__metric strong {
	font-size: clamp(34px, 3.6vw, 46px);
}

.at-smm-service-card {
	min-height: 320px;
	border-radius: 14px;
}

.at-smm-service-card h3 {
	font-size: clamp(21px, 1.8vw, 25px);
}

.at-smm-campaign-card {
	min-height: 400px;
	border-radius: 20px;
}

.at-smm-campaign-card__media {
	min-height: 400px;
}

.at-smm-campaign-card h3 {
	font-size: clamp(29px, 2.8vw, 40px);
}

.at-smm-process-step {
	min-height: 330px;
	border-radius: 14px;
}

.at-smm-process-step h3 {
	font-size: clamp(21px, 1.8vw, 25px);
}

.at-smm-results__story,
.at-smm-results__quote {
	border-radius: 20px;
	overflow: hidden;
}

.at-smm-results__story h3 {
	font-size: clamp(28px, 2.6vw, 36px);
}

.at-smm-results__quote blockquote {
	font-size: clamp(20px, 1.8vw, 24px);
}

.at-smm-faq-cta__heading {
	font-size: clamp(33px, 3.5vw, 48px);
}

.at-smm-faq__question {
	font-size: clamp(17px, 1.4vw, 20px);
}

.at-smm-faq-cta__cta {
	border-radius: 24px;
}

.at-smm-faq-cta__cta h3 {
	color: var(--at-smm-cta-text) !important;
	font-size: clamp(34px, 4vw, 52px);
}

.at-smm-faq-cta__cta small {
	color: color-mix(in srgb, var(--at-smm-cta-text) 64%, transparent);
}

/* Tablet. */
@media (max-width: 1100px) {
	.at-smm-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr);
		gap: 42px;
	}

	.at-smm-hero__title {
		font-size: clamp(40px, 5.5vw, 52px);
	}

	.at-smm-hero__visual {
		min-height: 520px;
	}
}

@media (max-width: 900px) {
	.at-smm-hero::after {
		display: none;
	}

	.at-smm-hero__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.at-smm-hero-image-left .at-smm-hero__visual {
		order: 0;
	}

	.at-smm-hero__content {
		max-width: 740px;
		padding: 0;
	}

	.at-smm-hero__visual {
		min-height: 520px;
	}

	.at-smm-hero__image-wrap,
	.at-smm-hero-image-left .at-smm-hero__image-wrap {
		inset: 0 0 0 34px;
	}

	.at-smm-hero-image-left .at-smm-hero__stat-card {
		right: auto;
		left: 0;
	}

	.at-smm-hero-image-left .at-smm-hero__orb--one {
		right: auto;
		left: 3px;
	}
}

/* Mobile. */
@media (max-width: 767px) {
	.at-smm-full-bleed-yes .at-smm-widget {
		width: 100vw;
		max-width: 100vw;
	}

	.at-smm-section-heading h2,
	.at-smm-results__heading,
	.at-smm-faq-cta__heading {
		font-size: 33px;
	}

	.at-smm-hero__title {
		font-size: clamp(36px, 10.5vw, 42px);
		line-height: 1.04;
		letter-spacing: -.045em;
	}

	.at-smm-hero__description {
		font-size: 15px;
	}

	.at-smm-hero__metrics {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 18px;
	}

	.at-smm-hero__metric {
		min-width: 0;
	}

	.at-smm-hero__visual {
		min-height: 390px;
	}

	.at-smm-hero__image-wrap,
	.at-smm-hero-image-left .at-smm-hero__image-wrap {
		inset: 0 0 0 18px;
		border-radius: 20px;
	}

	.at-smm-hero__stat-card,
	.at-smm-hero-image-left .at-smm-hero__stat-card {
		left: 0;
		right: auto;
		bottom: 24px;
		width: 145px;
		padding: 16px;
		border-radius: 15px;
	}

	.at-smm-hero__stat-card strong {
		font-size: 28px;
	}

	.at-smm-hero__visual-badge {
		top: 14px;
		left: 14px;
		max-width: calc(100% - 28px);
		font-size: 9px;
	}

	.at-smm-hero__floating-label {
		right: 14px;
		bottom: 14px;
		max-width: 58%;
		font-size: 8px;
	}

	.at-smm-hero__orb--one {
		left: -7px;
		width: 66px;
		height: 66px;
	}

	.at-smm-hero__orb--two {
		right: -46px;
	}

	.at-smm-service-card,
	.at-smm-process-step {
		min-height: 290px;
	}

	.at-smm-campaign-card,
	.at-smm-campaign-card__media {
		min-height: 300px;
	}

	.at-smm-campaign-card h3 {
		font-size: 29px;
	}

	.at-smm-faq-cta__cta h3 {
		font-size: 34px;
	}
}

@media (max-width: 420px) {
	.at-smm-hero__metrics {
		grid-template-columns: 1fr;
	}

	.at-smm-hero__visual {
		min-height: 350px;
	}

	.at-smm-hero__floating-label {
		display: none;
	}
}
