:root {
	--sc-primary: #ff7b67;
	--sc-primary-dark: #e95d49;
	--sc-accent: #ffb000;
	--sc-dark: #202225;
	--sc-ink: #171b24;
	--sc-muted: #697080;
	--sc-line: #e2e5eb;
	--sc-soft: #f5f7fb;
	--sc-cream: #fff7e8;
	--sc-blue: #173a7a;
	--sc-green: #25d366;
	--sc-white: #fff;
	--sc-radius: 22px;
	--sc-radius-sm: 13px;
	--sc-shadow: 0 24px 70px rgba(21, 29, 44, 0.12);
	--sc-shadow-sm: 0 12px 34px rgba(21, 29, 44, 0.09);
	--sc-container: 1200px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--sc-white);
	color: var(--sc-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

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

a,
button,
input,
select,
textarea,
summary {
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--sc-ink);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0 0 0.55em;
}

h1 {
	font-size: clamp(2.75rem, 5vw, 4.9rem);
}

h2 {
	font-size: clamp(2.1rem, 3.6vw, 3.4rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
	margin: 0 0 1.25em;
}

ul,
ol {
	padding-left: 1.3rem;
}

::selection {
	background: var(--sc-primary);
	color: var(--sc-white);
}

:focus-visible {
	outline: 3px solid rgba(255, 123, 103, 0.55);
	outline-offset: 4px;
}

.container {
	margin-inline: auto;
	max-width: var(--sc-container);
	padding-inline: 24px;
	width: 100%;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--sc-white);
	clip: auto !important;
	clip-path: none;
	color: var(--sc-ink);
	display: block;
	font-size: 0.9rem;
	height: auto;
	left: 12px;
	padding: 12px 18px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

.skip-link {
	box-shadow: var(--sc-shadow-sm);
}

.section {
	padding-block: clamp(76px, 9vw, 126px);
}

.section--soft {
	background: var(--sc-soft);
}

.section--dark {
	background: var(--sc-dark);
	color: rgba(255, 255, 255, 0.72);
}

.section--dark h2,
.section--dark h3 {
	color: var(--sc-white);
}

.eyebrow {
	align-items: center;
	color: var(--sc-primary-dark);
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 800;
	gap: 9px;
	letter-spacing: 0.15em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.eyebrow::before {
	background: currentColor;
	content: "";
	height: 2px;
	width: 28px;
}

.eyebrow .status-dot {
	animation: sc-pulse 2s infinite;
	background: var(--sc-green);
	border: 4px solid rgba(37, 211, 102, 0.16);
	border-radius: 50%;
	height: 12px;
	width: 12px;
}

.eyebrow:has(.status-dot)::before {
	display: none;
}

.eyebrow--light {
	color: #ffd7d1;
}

.section-heading {
	margin-bottom: 52px;
}

.section-heading h2 {
	margin-bottom: 0;
	max-width: 760px;
}

.section-heading > p {
	color: var(--sc-muted);
	margin: 18px 0 0;
	max-width: 620px;
}

.section-heading--center {
	margin-inline: auto;
	max-width: 820px;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading--center > p,
.section-heading--center h2 {
	margin-inline: auto;
}

.section-heading--split {
	align-items: end;
	display: flex;
	gap: 50px;
	justify-content: space-between;
}

.section-heading--split > p {
	margin: 0 0 5px;
	max-width: 450px;
}

.section-heading--split .text-link {
	flex: 0 0 auto;
	margin-bottom: 8px;
}

.section-heading--light h2 {
	color: var(--sc-white);
}

.section-heading--light p {
	color: rgba(255, 255, 255, 0.64);
}

.section-copy > p {
	color: var(--sc-muted);
	font-size: 1.06rem;
	max-width: 620px;
}

.section-copy h2 {
	max-width: 650px;
}

.split-layout {
	align-items: center;
	display: grid;
	gap: clamp(50px, 8vw, 108px);
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.centered-action {
	margin-top: 40px;
	text-align: center;
}

/* Buttons and links */
.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 800;
	gap: 10px;
	justify-content: center;
	letter-spacing: -0.01em;
	line-height: 1;
	min-height: 50px;
	padding: 15px 24px;
}

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

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

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

.button--primary:hover {
	background: var(--sc-primary-dark);
	box-shadow: 0 13px 28px rgba(233, 93, 73, 0.23);
}

.button--dark {
	background: var(--sc-dark);
	color: var(--sc-white);
}

.button--dark:hover {
	background: #0b0d11;
	box-shadow: 0 13px 28px rgba(23, 27, 36, 0.22);
}

.button--light {
	background: var(--sc-white);
	color: var(--sc-ink);
}

.button--light:hover {
	box-shadow: var(--sc-shadow-sm);
}

.button--outline {
	border-color: var(--sc-line);
	color: var(--sc-ink);
}

.button--outline:hover {
	background: var(--sc-ink);
	border-color: var(--sc-ink);
	color: var(--sc-white);
}

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

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

.text-link {
	align-items: center;
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 800;
	gap: 8px;
	position: relative;
}

.text-link::after {
	background: var(--sc-primary);
	bottom: -5px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
	width: 100%;
}

.text-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.text-link--light {
	color: var(--sc-white);
}

/* Header */
.site-header {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(226, 229, 235, 0.68);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 35px rgba(21, 29, 44, 0.07);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 88px;
	justify-content: space-between;
}

.site-brand {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	max-width: 205px;
}

.site-brand .custom-logo-link,
.site-brand__fallback {
	display: block;
}

.site-brand img {
	height: auto;
	max-height: 43px;
	width: auto;
}

.primary-navigation {
	margin-inline: auto;
}

.primary-navigation .menu {
	align-items: center;
	display: flex;
	gap: 35px;
	list-style: none;
	margin: 0;
	padding: 0 30px;
}

.primary-navigation .menu-item {
	position: relative;
}

.primary-navigation a {
	color: #454a55;
	display: block;
	font-size: 0.92rem;
	font-weight: 650;
	padding-block: 31px;
	position: relative;
}

.primary-navigation a::after {
	background: var(--sc-primary);
	border-radius: 2px;
	bottom: 23px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transition: transform 180ms ease;
	width: 100%;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
	color: var(--sc-ink);
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
	transform: scaleX(1);
}

.primary-navigation .sub-menu {
	background: var(--sc-white);
	border: 1px solid var(--sc-line);
	border-radius: 12px;
	box-shadow: var(--sc-shadow-sm);
	display: none;
	left: -18px;
	list-style: none;
	margin: 0;
	min-width: 210px;
	padding: 10px;
	position: absolute;
	top: calc(100% - 10px);
}

.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu {
	display: block;
}

.primary-navigation .sub-menu a {
	border-radius: 7px;
	padding: 10px 12px;
}

.primary-navigation .sub-menu a::after {
	display: none;
}

.primary-navigation .sub-menu a:hover {
	background: var(--sc-soft);
}

.header-cta {
	min-width: 142px;
}

.menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	height: 44px;
	padding: 10px;
	width: 44px;
}

.menu-toggle > span:not(.screen-reader-text) {
	background: var(--sc-ink);
	display: block;
	height: 2px;
	margin: 5px auto;
	transition: transform 180ms ease, opacity 180ms ease;
	width: 24px;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
	background:
		radial-gradient(circle at 82% 22%, rgba(255, 176, 0, 0.12), transparent 23%),
		linear-gradient(135deg, #f8f9fc 0%, #f5f7fb 58%, #fffaf0 100%);
	min-height: 735px;
	overflow: hidden;
	position: relative;
}

.hero::before {
	background-image: radial-gradient(rgba(23, 27, 36, 0.12) 1px, transparent 1px);
	background-size: 22px 22px;
	content: "";
	height: 180px;
	left: -40px;
	opacity: 0.35;
	position: absolute;
	top: 110px;
	width: 220px;
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	min-height: 735px;
	padding-block: 72px 68px;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: clamp(3.15rem, 5.7vw, 5.45rem);
	max-width: 760px;
}

.hero__lead {
	color: var(--sc-muted);
	font-size: clamp(1rem, 1.4vw, 1.16rem);
	max-width: 620px;
}

.hero__actions {
	align-items: center;
	display: flex;
	gap: 27px;
	margin-top: 34px;
}

.hero__proof {
	border-top: 1px solid var(--sc-line);
	display: flex;
	gap: clamp(25px, 4vw, 50px);
	margin-top: 48px;
	max-width: 640px;
	padding-top: 28px;
}

.hero__proof div {
	display: grid;
}

.hero__proof strong {
	color: var(--sc-ink);
	font-size: 1.35rem;
	line-height: 1.2;
}

.hero__proof span {
	color: var(--sc-muted);
	font-size: 0.76rem;
	margin-top: 4px;
}

.hero__visual {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 570px;
	position: relative;
}

.hero__visual::before {
	background: var(--sc-cream);
	border-radius: 46% 54% 45% 55% / 48% 42% 58% 52%;
	content: "";
	height: 470px;
	position: absolute;
	right: 10px;
	transform: rotate(-5deg);
	width: 465px;
}

.hero__visual > img {
	filter: drop-shadow(0 34px 30px rgba(23, 27, 36, 0.2));
	max-height: 575px;
	object-fit: contain;
	position: relative;
	width: auto;
	z-index: 2;
}

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

.hero__orb--one {
	background: var(--sc-primary);
	height: 72px;
	right: 28px;
	top: 60px;
	width: 72px;
}

.hero__orb--two {
	border: 2px solid var(--sc-accent);
	bottom: 45px;
	height: 42px;
	left: 36px;
	width: 42px;
}

.rate-chip {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	box-shadow: var(--sc-shadow-sm);
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	padding: 13px 17px;
	position: absolute;
	z-index: 4;
}

.rate-chip span,
.rate-chip small {
	color: var(--sc-muted);
	font-size: 0.69rem;
}

.rate-chip strong {
	font-size: 0.98rem;
}

.rate-chip--top {
	left: -10px;
	top: 115px;
}

.rate-chip--bottom {
	align-items: center;
	bottom: 80px;
	flex-direction: row;
	gap: 10px;
	right: 0;
}

.rate-chip--bottom > span:last-child {
	display: grid;
}

.rate-chip__icon {
	align-items: center;
	background: rgba(37, 211, 102, 0.14);
	border-radius: 50%;
	color: #119e45 !important;
	display: flex;
	font-size: 0.8rem !important;
	height: 31px;
	justify-content: center;
	width: 31px;
}

@keyframes sc-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.25); }
	50% { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
}

/* Brand strip */
.brand-strip {
	background: var(--sc-white);
	border-bottom: 1px solid var(--sc-line);
	border-top: 1px solid var(--sc-line);
	padding-block: 27px;
}

.brand-strip .container {
	align-items: center;
	display: flex;
	gap: 45px;
}

.brand-strip p {
	color: var(--sc-muted);
	flex: 0 0 auto;
	font-size: 0.76rem;
	font-weight: 700;
	margin: 0;
	max-width: 120px;
	text-transform: uppercase;
}

.brand-list {
	align-items: center;
	display: flex;
	flex: 1;
	gap: clamp(24px, 4.4vw, 58px);
	justify-content: space-between;
	overflow: hidden;
}

.brand-list > span {
	align-items: center;
	color: #323741;
	display: flex;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 8px;
	white-space: nowrap;
}

.brand-mark {
	align-items: center;
	background: #eff1f5;
	border-radius: 50%;
	display: inline-flex;
	font-size: 0.72rem;
	height: 27px;
	justify-content: center;
	width: 27px;
}

.brand-mark--steam { background: #182f4a; color: #fff; }
.brand-mark--apple { background: #111; color: #fff; }
.brand-mark--razer { background: #d9fb34; color: #17450f; }
.brand-mark--xbox { background: #1ca847; color: #fff; }
.brand-mark--amazon { background: #ffbd45; color: #151515; }
.brand-mark--google { background: #e9f1ff; color: #4285f4; }

/* Home content */
.check-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 29px 0 33px;
	padding: 0;
}

.check-list li {
	align-items: center;
	display: flex;
	font-weight: 650;
	gap: 12px;
}

.check-list li::before {
	align-items: center;
	background: rgba(37, 211, 102, 0.14);
	border-radius: 50%;
	color: #169847;
	content: "✓";
	display: flex;
	flex: 0 0 26px;
	font-size: 0.75rem;
	font-weight: 900;
	height: 26px;
	justify-content: center;
}

.service-intro__visual {
	min-height: 515px;
	position: relative;
}

.visual-card {
	align-items: center;
	background: var(--sc-cream);
	border-radius: var(--sc-radius);
	display: flex;
	height: 475px;
	justify-content: center;
	overflow: hidden;
	padding: 45px;
	position: relative;
}

.visual-card::before,
.visual-card::after {
	border: 1px solid rgba(255, 176, 0, 0.28);
	border-radius: 50%;
	content: "";
	height: 380px;
	position: absolute;
	width: 380px;
}

.visual-card::after {
	height: 290px;
	width: 290px;
}

.visual-card img {
	max-height: 350px;
	object-fit: contain;
	position: relative;
	width: auto;
	z-index: 2;
}

.mini-review {
	background: var(--sc-white);
	border-radius: 14px;
	bottom: 0;
	box-shadow: var(--sc-shadow-sm);
	display: grid;
	left: -30px;
	padding: 17px 22px;
	position: absolute;
	z-index: 3;
}

.mini-review__stars {
	color: var(--sc-accent);
	font-size: 0.76rem;
	letter-spacing: 0.08em;
}

.mini-review strong {
	font-size: 0.9rem;
}

.mini-review small {
	color: var(--sc-muted);
	font-size: 0.7rem;
}

.numbered-services {
	border-bottom: 1px solid var(--sc-line);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.numbered-service {
	border-left: 1px solid var(--sc-line);
	min-height: 310px;
	padding: 32px 28px 28px;
	position: relative;
}

.numbered-service:last-child {
	border-right: 1px solid var(--sc-line);
}

.numbered-service > span {
	color: var(--sc-primary-dark);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.12em;
}

.numbered-service h3 {
	margin-top: 65px;
}

.numbered-service p {
	color: var(--sc-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.numbered-service b {
	align-items: center;
	border: 1px solid var(--sc-line);
	border-radius: 50%;
	bottom: 25px;
	display: flex;
	font-size: 0.8rem;
	height: 35px;
	justify-content: center;
	position: absolute;
	right: 25px;
	width: 35px;
}

.numbered-service:hover {
	background: var(--sc-white);
	box-shadow: var(--sc-shadow-sm);
	transform: translateY(-7px);
	z-index: 2;
}

.numbered-service:hover b {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	color: var(--sc-white);
}

.gift-card-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.gift-card {
	border-radius: 20px;
	color: var(--sc-white);
	min-height: 205px;
	overflow: hidden;
	padding: 25px;
	position: relative;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.gift-card::after {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	content: "";
	height: 180px;
	position: absolute;
	right: -80px;
	top: 42px;
	width: 180px;
}

.gift-card:hover {
	box-shadow: var(--sc-shadow-sm);
	transform: translateY(-6px) rotate(-1deg);
}

.gift-card__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.gift-card__top > span {
	align-items: center;
	background: rgba(255, 255, 255, 0.17);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	display: flex;
	font-weight: 900;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.gift-card__top small {
	font-size: 0.65rem;
	opacity: 0.82;
}

.gift-card h3 {
	color: var(--sc-white);
	font-size: 1.5rem;
	margin: 54px 0 3px;
	position: relative;
	z-index: 2;
}

.gift-card p {
	font-size: 0.75rem;
	margin: 0;
	opacity: 0.78;
}

.gift-card > b {
	bottom: 20px;
	font-size: 0.7rem;
	opacity: 0.55;
	position: absolute;
	right: 23px;
	z-index: 2;
}

.gift-card--apple { background: linear-gradient(135deg, #16191f, #3f4757); }
.gift-card--razer { background: linear-gradient(135deg, #106f31, #1fb95b); }
.gift-card--steam { background: linear-gradient(135deg, #102f59, #1f6a9b); }
.gift-card--xbox { background: linear-gradient(135deg, #77b82a, #278b33); }

.testimonial-section {
	padding-top: 35px;
}

.testimonial-panel {
	align-items: center;
	background: var(--sc-blue);
	border-radius: 28px;
	color: var(--sc-white);
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	min-height: 470px;
	overflow: hidden;
	padding: 0;
}

.testimonial-panel__visual {
	align-self: stretch;
	background: linear-gradient(140deg, #ffd5b0, var(--sc-primary));
	position: relative;
}

.testimonial-panel__visual::after {
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 50%;
	content: "";
	height: 320px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
}

.testimonial-panel__visual img {
	bottom: 0;
	filter: saturate(0.82);
	height: 94%;
	left: 50%;
	object-fit: contain;
	position: absolute;
	transform: translateX(-50%);
	width: auto;
	z-index: 2;
}

.testimonial-badge {
	background: var(--sc-white);
	border-radius: 13px;
	bottom: 26px;
	box-shadow: var(--sc-shadow-sm);
	color: var(--sc-muted);
	display: grid;
	font-size: 0.68rem;
	left: 25px;
	padding: 12px 16px;
	position: absolute;
	z-index: 3;
}

.testimonial-badge strong {
	color: var(--sc-ink);
	font-size: 1.25rem;
}

.testimonial-panel blockquote {
	margin: 0;
	padding: clamp(48px, 7vw, 90px);
}

.testimonial-panel blockquote > p {
	color: var(--sc-white);
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.45;
	margin-bottom: 32px;
}

.quote-mark {
	color: var(--sc-primary);
	font-family: Georgia, serif;
	font-size: 5rem;
	line-height: 0.65;
}

.testimonial-panel blockquote footer {
	display: grid;
}

.testimonial-panel blockquote footer strong {
	font-size: 0.95rem;
}

.testimonial-panel blockquote footer span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.76rem;
}

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

.benefit-card {
	background: var(--sc-white);
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	min-height: 320px;
	padding: 40px 36px;
}

.benefit-card--featured {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	color: rgba(255, 255, 255, 0.84);
}

.benefit-card--featured h3 {
	color: var(--sc-white);
}

.benefit-card__icon {
	align-items: center;
	background: var(--sc-soft);
	border-radius: 14px;
	display: flex;
	height: 55px;
	justify-content: center;
	margin-bottom: 62px;
	width: 55px;
}

.benefit-card--featured .benefit-card__icon {
	background: rgba(255, 255, 255, 0.18);
}

.benefit-card__icon svg {
	fill: none;
	height: 27px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 27px;
}

.benefit-card h3 {
	margin-bottom: 13px;
}

.benefit-card p {
	color: var(--sc-muted);
	font-size: 0.9rem;
	line-height: 1.65;
	margin: 0;
}

.benefit-card--featured p {
	color: rgba(255, 255, 255, 0.82);
}

/* Posts */
.post-grid {
	display: grid;
	gap: 25px;
	grid-template-columns: repeat(3, 1fr);
}

.post-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card {
	background: var(--sc-white);
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.post-card:hover {
	box-shadow: var(--sc-shadow-sm);
	transform: translateY(-6px);
}

.post-card__image {
	aspect-ratio: 1.48;
	background: var(--sc-soft);
	display: block;
	overflow: hidden;
}

.post-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
	width: 100%;
}

.post-card:hover .post-card__image img {
	transform: scale(1.045);
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 27px 27px 30px;
}

.post-card__meta {
	color: var(--sc-muted);
	display: flex;
	font-size: 0.69rem;
	font-weight: 650;
	gap: 18px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.post-card__meta span + span::before {
	color: var(--sc-primary);
	content: "•";
	margin-right: 18px;
}

.post-card h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	margin-bottom: 12px;
}

.post-card h3 a:hover {
	color: var(--sc-primary-dark);
}

.post-card p {
	color: var(--sc-muted);
	font-size: 0.86rem;
	line-height: 1.65;
}

.post-card .text-link {
	margin-top: auto;
}

.cta-section {
	padding: 0 0 clamp(76px, 9vw, 126px);
}

.cta-panel {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		var(--sc-primary);
	background-size: 34px 34px;
	border-radius: 26px;
	color: rgba(255, 255, 255, 0.84);
	display: flex;
	gap: 60px;
	justify-content: space-between;
	min-height: 310px;
	overflow: hidden;
	padding: clamp(45px, 6vw, 76px);
	position: relative;
}

.cta-panel::after {
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 50%;
	content: "";
	height: 290px;
	position: absolute;
	right: -90px;
	top: -110px;
	width: 290px;
}

.cta-panel > div {
	max-width: 750px;
	position: relative;
	z-index: 2;
}

.cta-panel h2 {
	color: var(--sc-white);
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	margin-bottom: 14px;
}

.cta-panel p {
	margin: 0;
	max-width: 650px;
}

.cta-panel .button {
	flex: 0 0 auto;
	position: relative;
	z-index: 2;
}

/* Page masthead */
.page-masthead {
	background:
		radial-gradient(circle at 90% -30%, rgba(255, 176, 0, 0.22), transparent 29%),
		var(--sc-soft);
	border-bottom: 1px solid var(--sc-line);
	overflow: hidden;
	position: relative;
}

.page-masthead::after {
	background-image: radial-gradient(rgba(23, 27, 36, 0.14) 1px, transparent 1px);
	background-size: 20px 20px;
	content: "";
	height: 160px;
	opacity: 0.3;
	position: absolute;
	right: 40px;
	top: 25px;
	width: 210px;
}

.page-masthead__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	min-height: 345px;
	padding-block: 75px;
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-masthead h1 {
	font-size: clamp(2.8rem, 5.4vw, 4.8rem);
	margin-bottom: 13px;
}

.page-masthead p {
	color: var(--sc-muted);
	margin: 0;
	max-width: 680px;
}

/* About */
.about-story__image {
	border-radius: var(--sc-radius);
	min-height: 520px;
	overflow: hidden;
	position: relative;
}

.about-story__image::after {
	background: linear-gradient(180deg, transparent 50%, rgba(16, 19, 27, 0.48));
	content: "";
	inset: 0;
	position: absolute;
}

.about-story__image img {
	height: 520px;
	object-fit: cover;
	width: 100%;
}

.about-story__image > span {
	bottom: 28px;
	color: var(--sc-white);
	display: grid;
	left: 30px;
	position: absolute;
	z-index: 2;
}

.about-story__image > span strong {
	font-size: 2rem;
	line-height: 1;
}

.about-story__image > span {
	font-size: 0.8rem;
}

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

.stats-grid > div {
	border-left: 1px solid var(--sc-line);
	padding: 15px 35px;
	text-align: center;
}

.stats-grid > div:last-child {
	border-right: 1px solid var(--sc-line);
}

.stats-grid strong {
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.stats-grid strong span {
	color: var(--sc-primary);
}

.stats-grid p {
	color: var(--sc-muted);
	font-size: 0.77rem;
	margin: 10px 0 0;
	text-transform: uppercase;
}

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

.values-grid article {
	border-top: 1px solid var(--sc-line);
	padding: 33px 28px 0 0;
}

.values-grid article > span {
	color: var(--sc-primary);
	font-size: 0.77rem;
	font-weight: 850;
}

.values-grid h3 {
	margin-top: 55px;
}

.values-grid p {
	color: var(--sc-muted);
	font-size: 0.9rem;
}

.faq-section {
	background: var(--sc-soft);
}

.faq-layout {
	align-items: start;
	display: grid;
	gap: clamp(55px, 9vw, 120px);
	grid-template-columns: 0.78fr 1.22fr;
}

.faq-list {
	border-top: 1px solid #d8dce4;
}

.faq-list details {
	border-bottom: 1px solid #d8dce4;
}

.faq-list summary {
	align-items: center;
	color: var(--sc-ink);
	cursor: pointer;
	display: flex;
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 750;
	justify-content: space-between;
	list-style: none;
	padding: 25px 3px;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	align-items: center;
	border: 1px solid var(--sc-line);
	border-radius: 50%;
	content: "+";
	display: flex;
	flex: 0 0 32px;
	font-size: 1.1rem;
	font-weight: 500;
	height: 32px;
	justify-content: center;
	margin-left: 20px;
}

.faq-list details[open] summary::after {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	color: var(--sc-white);
	content: "–";
}

.faq-list details p {
	color: var(--sc-muted);
	font-size: 0.9rem;
	margin: -7px 0 27px;
	max-width: 640px;
	padding-right: 55px;
}

/* Services */
.service-card-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(2, 1fr);
}

.service-card {
	background: var(--sc-soft);
	border: 1px solid transparent;
	border-radius: var(--sc-radius);
	min-height: 350px;
	padding: 38px;
	position: relative;
}

.service-card:hover {
	background: var(--sc-white);
	border-color: var(--sc-line);
	box-shadow: var(--sc-shadow-sm);
	transform: translateY(-5px);
}

.service-card > span {
	align-items: center;
	background: var(--sc-white);
	border-radius: 12px;
	color: var(--sc-primary-dark);
	display: flex;
	font-size: 0.8rem;
	font-weight: 850;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.service-card h3 {
	margin-top: 48px;
}

.service-card p {
	color: var(--sc-muted);
	font-size: 0.9rem;
	max-width: 480px;
}

.service-card ul {
	color: var(--sc-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.72rem;
	gap: 8px 22px;
	list-style: none;
	margin: 25px 0 0;
	padding: 0;
}

.service-card li::before {
	color: var(--sc-primary);
	content: "✓";
	font-weight: 900;
	margin-right: 7px;
}

.process-section {
	overflow: hidden;
	position: relative;
}

.process-section::after {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
	height: 650px;
	position: absolute;
	right: -260px;
	top: -320px;
	width: 650px;
}

.process-section .container {
	position: relative;
	z-index: 2;
}

.process-list {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 0;
	padding: 0;
}

.process-list li {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	min-height: 270px;
	padding: 35px 35px 30px;
}

.process-list li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list li > span {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: var(--sc-primary);
	display: flex;
	font-size: 0.8rem;
	font-weight: 800;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.process-list h3 {
	margin-top: 54px;
}

.process-list p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.86rem;
}

.accepted-cards__visual {
	align-items: center;
	background: var(--sc-cream);
	border-radius: var(--sc-radius);
	display: flex;
	height: 580px;
	justify-content: center;
	overflow: hidden;
}

.accepted-cards__visual img {
	filter: drop-shadow(0 35px 24px rgba(23, 27, 36, 0.2));
	height: 550px;
	object-fit: contain;
	width: auto;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 30px 0 34px;
}

.tag-cloud span {
	background: var(--sc-soft);
	border: 1px solid var(--sc-line);
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 700;
	padding: 9px 15px;
}

/* Contact */
.contact-grid {
	align-items: start;
	display: grid;
	gap: clamp(50px, 8vw, 105px);
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.contact-copy > p {
	color: var(--sc-muted);
	max-width: 530px;
}

.contact-methods {
	border-top: 1px solid var(--sc-line);
	margin-top: 38px;
}

.contact-methods > a,
.contact-methods > div {
	align-items: center;
	border-bottom: 1px solid var(--sc-line);
	display: flex;
	gap: 16px;
	padding-block: 18px;
}

.contact-methods > a > span,
.contact-methods > div > span {
	align-items: center;
	background: var(--sc-soft);
	border-radius: 50%;
	color: var(--sc-primary-dark);
	display: flex;
	flex: 0 0 42px;
	font-size: 0.85rem;
	font-weight: 900;
	height: 42px;
	justify-content: center;
}

.contact-methods > a > div,
.contact-methods > div > div {
	display: grid;
}

.contact-methods small {
	color: var(--sc-muted);
	font-size: 0.7rem;
}

.contact-methods strong {
	font-size: 0.92rem;
	word-break: break-word;
}

.contact-methods a:hover strong {
	color: var(--sc-primary-dark);
}

.contact-tip {
	background: var(--sc-cream);
	border-left: 3px solid var(--sc-accent);
	border-radius: 0 12px 12px 0;
	margin-top: 33px;
	padding: 20px 22px;
}

.contact-tip strong {
	font-size: 0.82rem;
}

.contact-tip p {
	color: var(--sc-muted);
	font-size: 0.78rem;
	line-height: 1.6;
	margin: 4px 0 0;
}

.contact-form-card {
	background: var(--sc-soft);
	border-radius: var(--sc-radius);
	padding: clamp(30px, 5vw, 55px);
}

.contact-form-card h2 {
	font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.contact-form {
	margin-top: 32px;
}

.contact-form p {
	margin: 0 0 19px;
}

.contact-form label {
	color: #3f4551;
	display: block;
	font-size: 0.76rem;
	font-weight: 750;
	margin-bottom: 7px;
}

.contact-form label span {
	color: var(--sc-primary-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	background: var(--sc-white);
	border: 1px solid var(--sc-line);
	border-radius: 9px;
	color: var(--sc-ink);
	outline: 0;
	padding: 13px 14px;
	width: 100%;
}

.contact-form input,
.contact-form select {
	height: 51px;
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--sc-primary);
	box-shadow: 0 0 0 4px rgba(255, 123, 103, 0.12);
}

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

.honeypot {
	height: 0;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	width: 0;
}

.form-notice {
	border-radius: 9px;
	font-size: 0.82rem;
	margin: 16px 0;
	padding: 11px 14px;
}

.form-notice--success {
	background: rgba(37, 211, 102, 0.12);
	color: #11733a;
}

.form-notice--error {
	background: rgba(221, 62, 62, 0.1);
	color: #a12d2d;
}

/* Blog index/sidebar */
.blog-layout {
	align-items: start;
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(0, 1fr) 330px;
}

.blog-index__heading {
	margin-bottom: 40px;
}

.blog-index__heading h2 {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.blog-sidebar {
	display: grid;
	gap: 22px;
	position: sticky;
	top: 115px;
}

.sidebar-cta {
	background: var(--sc-blue);
	border-radius: var(--sc-radius);
	color: rgba(255, 255, 255, 0.7);
	padding: 33px;
}

.sidebar-cta h2 {
	color: var(--sc-white);
	font-size: 1.8rem;
}

.sidebar-cta p {
	font-size: 0.84rem;
}

.sidebar-card {
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius-sm);
	padding: 27px;
}

.sidebar-card h2 {
	border-bottom: 1px solid var(--sc-line);
	font-size: 1.1rem;
	margin-bottom: 20px;
	padding-bottom: 16px;
}

.sidebar-card ul {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-card li {
	display: grid;
	font-size: 0.82rem;
	line-height: 1.4;
}

.sidebar-card li a {
	font-weight: 700;
}

.sidebar-card li a:hover {
	color: var(--sc-primary-dark);
}

.sidebar-card li > span {
	color: var(--sc-muted);
	font-size: 0.68rem;
	margin-top: 4px;
}

.category-list li {
	display: flex;
	justify-content: space-between;
}

.navigation.pagination {
	margin-top: 45px;
}

.nav-links {
	align-items: center;
	display: flex;
	gap: 8px;
}

.page-numbers {
	align-items: center;
	border: 1px solid var(--sc-line);
	border-radius: 8px;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 700;
	height: 39px;
	justify-content: center;
	min-width: 39px;
	padding-inline: 12px;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--sc-primary);
	border-color: var(--sc-primary);
	color: var(--sc-white);
}

/* Single post */
.single-hero {
	background: var(--sc-soft);
	border-bottom: 1px solid var(--sc-line);
	padding-block: clamp(65px, 8vw, 105px);
}

.single-hero__inner {
	align-items: center;
	display: grid;
	gap: clamp(45px, 7vw, 90px);
	grid-template-columns: 1.08fr 0.92fr;
}

.single-hero__meta {
	color: var(--sc-muted);
	display: flex;
	font-size: 0.72rem;
	font-weight: 750;
	gap: 24px;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.single-hero__meta span {
	color: var(--sc-primary-dark);
}

.single-hero h1 {
	font-size: clamp(2.6rem, 5.2vw, 4.7rem);
}

.single-hero__copy > p {
	color: var(--sc-muted);
	font-size: 1.02rem;
	max-width: 670px;
}

.single-hero__author {
	align-items: center;
	border-top: 1px solid var(--sc-line);
	display: flex;
	margin-top: 31px;
	padding-top: 24px;
}

.author-avatar {
	align-items: center;
	background: var(--sc-primary);
	border-radius: 50%;
	color: var(--sc-white);
	display: flex;
	font-weight: 850;
	height: 40px;
	justify-content: center;
	margin-right: 10px;
	width: 40px;
}

.single-hero__author > span:nth-child(2) {
	display: grid;
	line-height: 1.25;
}

.single-hero__author small {
	color: var(--sc-muted);
	font-size: 0.65rem;
}

.single-hero__author strong {
	font-size: 0.8rem;
}

.reading-time {
	color: var(--sc-muted);
	font-size: 0.72rem;
	margin-left: auto;
}

.single-hero__image {
	aspect-ratio: 1.2;
	border-radius: var(--sc-radius);
	box-shadow: var(--sc-shadow-sm);
	overflow: hidden;
	transform: rotate(2deg);
}

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

.single-layout {
	display: grid;
	grid-template-columns: 80px minmax(0, 820px);
	justify-content: center;
	padding-block: clamp(65px, 9vw, 115px);
}

.single-share {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 7px;
}

.single-share > span {
	color: var(--sc-muted);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.single-share a {
	align-items: center;
	border: 1px solid var(--sc-line);
	border-radius: 50%;
	display: flex;
	font-size: 0.7rem;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	text-transform: uppercase;
	width: 34px;
}

.single-share a:hover {
	background: var(--sc-ink);
	border-color: var(--sc-ink);
	color: var(--sc-white);
}

.entry-content {
	color: #454b57;
	font-size: 1.04rem;
	line-height: 1.86;
	min-width: 0;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--sc-ink);
	margin: 1.55em 0 0.58em;
}

.entry-content h2 {
	font-size: clamp(1.85rem, 3.2vw, 2.65rem);
}

.entry-content h3 {
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.entry-content a:not(.button) {
	color: var(--sc-primary-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	background: var(--sc-cream);
	border-left: 4px solid var(--sc-accent);
	border-radius: 0 12px 12px 0;
	color: var(--sc-ink);
	font-size: 1.12rem;
	font-weight: 650;
	margin: 2em 0;
	padding: 25px 28px;
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content img {
	border-radius: var(--sc-radius-sm);
}

.entry-content table {
	border-collapse: collapse;
	width: 100%;
}

.entry-content td,
.entry-content th {
	border: 1px solid var(--sc-line);
	padding: 11px;
}

.article-cta {
	align-items: center;
	background: var(--sc-soft);
	border-radius: var(--sc-radius);
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-top: 55px;
	padding: 32px 34px;
}

.article-cta .eyebrow {
	margin-bottom: 7px;
}

.article-cta h2 {
	font-size: 1.45rem;
	margin: 0;
}

.article-cta .button {
	flex: 0 0 auto;
}

.post-tags {
	border-top: 1px solid var(--sc-line);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.75rem;
	gap: 11px;
	margin-top: 42px;
	padding-top: 23px;
}

.post-tags a {
	background: var(--sc-soft);
	border-radius: 999px;
	color: var(--sc-muted) !important;
	padding: 5px 10px;
	text-decoration: none !important;
}

.related-posts {
	background: var(--sc-soft);
}

/* Generic pages, comments and errors */
.generic-page {
	padding-block: clamp(65px, 9vw, 110px);
}

.generic-page .entry-content {
	margin-inline: auto;
	max-width: 820px;
}

.builder-page-content {
	min-height: 200px;
}

.elementor-full-width-page,
.selllycard-canvas .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
}

.comments-area {
	border-top: 1px solid var(--sc-line);
	max-width: 900px;
	padding-block: 65px;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-body {
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius-sm);
	margin-bottom: 18px;
	padding: 24px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	border: 1px solid var(--sc-line);
	border-radius: 8px;
	padding: 12px;
	width: 100%;
}

.comment-form .submit {
	background: var(--sc-dark);
	border: 0;
	border-radius: 999px;
	color: var(--sc-white);
	font-weight: 800;
	padding: 15px 24px;
}

.error-page {
	background: var(--sc-soft);
}

.error-page__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 680px;
	padding-block: 80px;
	text-align: center;
}

.error-code {
	color: rgba(255, 123, 103, 0.14);
	font-size: clamp(7rem, 19vw, 15rem);
	font-weight: 900;
	letter-spacing: -0.09em;
	line-height: 0.7;
	margin-bottom: -20px;
}

.error-page h1 {
	font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.error-page p {
	color: var(--sc-muted);
	max-width: 570px;
}

.error-page__inner > div {
	align-items: center;
	display: flex;
	gap: 25px;
	margin-top: 20px;
}

.empty-state {
	grid-column: 1 / -1;
	padding-block: 55px;
	text-align: center;
}

.search-form {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 25px;
}

.search-form label {
	flex: 1;
	max-width: 430px;
}

.search-field {
	border: 1px solid var(--sc-line);
	border-radius: 999px;
	height: 50px;
	padding: 0 18px;
	width: 100%;
}

/* Footer */
.site-footer {
	background: var(--sc-dark);
	color: rgba(255, 255, 255, 0.62);
}

.footer-connect {
	background: #191b1e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: 28px;
}

.footer-connect__inner {
	align-items: center;
	display: grid;
	gap: 50px;
	grid-template-columns: 0.75fr 1.25fr;
}

.footer-phone {
	align-items: center;
	color: var(--sc-white);
	display: flex;
	gap: 14px;
}

.footer-phone__icon {
	color: var(--sc-green);
}

.footer-phone > span:last-child {
	display: grid;
}

.footer-phone small {
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.68rem;
}

.footer-phone strong {
	font-size: clamp(1.1rem, 2vw, 1.55rem);
	line-height: 1.2;
}

.subscribe-form {
	display: flex;
	gap: 10px;
}

.subscribe-form input {
	background: #f6f7fb;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--sc-ink);
	flex: 1;
	height: 52px;
	outline: 0;
	padding-inline: 21px;
}

.subscribe-form input:focus {
	border-color: var(--sc-primary);
}

.footer-connect > .form-notice {
	margin-bottom: 0;
}

.footer-grid {
	display: grid;
	gap: 55px;
	grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
	padding-block: 74px;
}

.footer-about .site-brand__fallback,
.footer-about .custom-logo-link {
	background: var(--sc-white);
	border-radius: 9px;
	display: inline-flex;
	margin-bottom: 23px;
	padding: 9px 14px;
}

.footer-about img {
	max-height: 35px;
	width: auto;
}

.footer-about p {
	font-size: 0.8rem;
	line-height: 1.7;
	max-width: 375px;
}

.footer-email {
	color: var(--sc-white);
	font-size: 0.8rem;
	font-weight: 700;
}

.footer-column h2 {
	color: var(--sc-white);
	font-size: 0.95rem;
	letter-spacing: 0;
	margin-bottom: 23px;
}

.footer-column ul {
	display: grid;
	gap: 11px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-column li,
.footer-column p {
	font-size: 0.78rem;
}

.footer-column a:hover {
	color: var(--sc-white);
}

.footer-hours p {
	max-width: 190px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 74px;
}

.footer-bottom p {
	font-size: 0.7rem;
	margin: 0;
}

.payment-badges {
	display: flex;
	gap: 7px;
}

.payment-badges span {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 3px;
	color: var(--sc-ink);
	font-size: 0.52rem;
	font-weight: 900;
	padding: 3px 6px;
}

.floating-whatsapp {
	align-items: center;
	background: var(--sc-green);
	border: 4px solid var(--sc-white);
	border-radius: 999px;
	bottom: 22px;
	box-shadow: 0 13px 30px rgba(26, 112, 60, 0.3);
	color: var(--sc-white);
	display: flex;
	font-size: 0.75rem;
	font-weight: 800;
	gap: 8px;
	padding: 10px 15px 10px 11px;
	position: fixed;
	right: 22px;
	z-index: 999;
}

.floating-whatsapp svg {
	height: 25px;
	width: 25px;
}

.floating-whatsapp:hover {
	background: #15b852;
	transform: translateY(-3px);
}

/* WordPress alignments */
.alignwide {
	margin-left: calc(50% - min(50vw, 600px));
	margin-right: calc(50% - min(50vw, 600px));
	max-width: 1200px;
	width: auto;
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.wp-caption,
.gallery-caption {
	color: var(--sc-muted);
	font-size: 0.78rem;
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

/* Responsive */
@media (max-width: 1100px) {
	.primary-navigation .menu {
		gap: 24px;
		padding-inline: 22px;
	}

	.header-cta {
		min-width: auto;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	}

	.hero__visual > img {
		max-height: 520px;
	}

	.numbered-service {
		padding-inline: 20px;
	}

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

	.footer-grid {
		grid-template-columns: 1.3fr repeat(3, 0.75fr);
		gap: 35px;
	}
}

@media (max-width: 900px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		height: 76px;
	}

	.site-brand {
		max-width: 180px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		position: relative;
		z-index: 1002;
	}

	.primary-navigation {
		background: var(--sc-white);
		border-top: 1px solid var(--sc-line);
		box-shadow: 0 25px 45px rgba(21, 29, 44, 0.1);
		left: 0;
		margin: 0;
		opacity: 0;
		padding: 18px 24px 26px;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 75px;
		transform: translateY(-12px);
		visibility: hidden;
	}

	.primary-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.primary-navigation .menu {
		align-items: stretch;
		display: grid;
		gap: 0;
		padding: 0;
	}

	.primary-navigation a {
		border-bottom: 1px solid var(--sc-line);
		font-size: 1rem;
		padding: 13px 4px;
	}

	.primary-navigation a::after {
		display: none;
	}

	.primary-navigation .sub-menu {
		border: 0;
		box-shadow: none;
		display: block;
		padding: 0 0 0 15px;
		position: static;
	}

	.header-cta {
		margin-left: 10px;
		min-height: 43px;
		padding: 10px 16px;
	}

	.hero,
	.hero__grid {
		min-height: auto;
	}

	.hero__grid,
	.split-layout,
	.single-hero__inner,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero__grid {
		padding-block: 70px;
	}

	.hero__content {
		max-width: 720px;
	}

	.hero__visual {
		margin-inline: auto;
		max-width: 590px;
		width: 100%;
	}

	.brand-strip .container {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.brand-strip p {
		max-width: none;
	}

	.brand-list {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

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

	.numbered-service:nth-child(3),
	.numbered-service:nth-child(4) {
		border-top: 1px solid var(--sc-line);
	}

	.numbered-service:nth-child(2) {
		border-right: 1px solid var(--sc-line);
	}

	.testimonial-panel {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.testimonial-panel blockquote {
		padding: 48px 38px;
	}

	.benefit-card__icon {
		margin-bottom: 38px;
	}

	.blog-layout {
		grid-template-columns: 1fr;
	}

	.blog-sidebar {
		grid-template-columns: repeat(2, 1fr);
		position: static;
	}

	.sidebar-cta {
		grid-row: span 2;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 45px;
	}

	.stats-grid > div:nth-child(3) {
		border-left: 1px solid var(--sc-line);
	}

	.stats-grid > div:nth-child(2) {
		border-right: 1px solid var(--sc-line);
	}

	.faq-layout {
		grid-template-columns: 1fr;
	}

	.accepted-cards__visual {
		grid-row: 2;
	}

	.contact-copy {
		max-width: 650px;
	}

	.footer-grid {
		grid-template-columns: 1.4fr repeat(3, 1fr);
	}
}

@media (max-width: 720px) {
	.container {
		padding-inline: 18px;
	}

	.section {
		padding-block: 72px;
	}

	.header-cta span {
		display: none;
	}

	.header-cta {
		border-radius: 50%;
		height: 43px;
		padding: 0;
		width: 43px;
	}

	.hero h1 {
		font-size: clamp(2.75rem, 13.5vw, 4.1rem);
	}

	.hero__lead {
		font-size: 1rem;
	}

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

	.hero__proof {
		gap: 18px;
		justify-content: space-between;
	}

	.hero__visual {
		min-height: 440px;
	}

	.hero__visual::before {
		height: 360px;
		right: 0;
		width: 360px;
	}

	.hero__visual > img {
		max-height: 430px;
	}

	.rate-chip--top {
		left: 0;
		top: 55px;
	}

	.rate-chip--bottom {
		bottom: 35px;
	}

	.brand-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.section-heading--split {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.visual-card {
		height: 400px;
	}

	.service-intro__visual {
		min-height: 440px;
	}

	.mini-review {
		left: 12px;
	}

	.numbered-services,
	.gift-card-grid,
	.benefit-grid,
	.post-grid,
	.post-grid--two,
	.values-grid,
	.service-card-grid,
	.process-list,
	.blog-sidebar {
		grid-template-columns: 1fr;
	}

	.numbered-service {
		border-right: 1px solid var(--sc-line);
		border-top: 1px solid var(--sc-line);
		min-height: 260px;
	}

	.numbered-service h3 {
		margin-top: 45px;
	}

	.testimonial-panel {
		display: block;
	}

	.testimonial-panel__visual {
		height: 380px;
	}

	.testimonial-panel blockquote {
		padding: 48px 28px;
	}

	.cta-panel {
		align-items: flex-start;
		flex-direction: column;
		gap: 28px;
	}

	.page-masthead__inner {
		min-height: 300px;
	}

	.page-masthead::after {
		right: -80px;
	}

	.about-story__image,
	.about-story__image img {
		height: 430px;
		min-height: 430px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.stats-grid > div {
		border-bottom: 1px solid var(--sc-line);
		border-left: 0 !important;
		border-right: 0 !important;
		padding-block: 30px;
	}

	.process-list li,
	.process-list li:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		border-left: 1px solid rgba(255, 255, 255, 0.14);
		border-right: 1px solid rgba(255, 255, 255, 0.14);
		min-height: 230px;
	}

	.process-list h3 {
		margin-top: 38px;
	}

	.accepted-cards__visual {
		height: 480px;
	}

	.accepted-cards__visual img {
		height: 450px;
	}

	.contact-form-card {
		margin-inline: -3px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.single-hero__image {
		transform: none;
	}

	.single-layout {
		display: block;
	}

	.single-share {
		flex-direction: row;
		margin-bottom: 32px;
	}

	.single-share > span {
		writing-mode: initial;
	}

	.article-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-connect__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

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

	.footer-about {
		grid-column: 1 / -1;
	}

	.footer-bottom__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
		justify-content: center;
		padding-block: 18px;
	}
}

@media (max-width: 480px) {
	.site-brand {
		max-width: 155px;
	}

	.menu-toggle {
		margin-left: 6px;
	}

	.hero__proof span {
		font-size: 0.67rem;
	}

	.hero__visual {
		min-height: 380px;
	}

	.hero__visual::before {
		height: 300px;
		width: 300px;
	}

	.hero__visual > img {
		max-height: 370px;
	}

	.rate-chip {
		padding: 9px 12px;
	}

	.brand-list {
		gap: 16px;
	}

	.brand-list > span {
		font-size: 0.78rem;
	}

	.service-intro__visual {
		min-height: 390px;
	}

	.visual-card {
		height: 350px;
		padding: 30px;
	}

	.testimonial-panel__visual {
		height: 320px;
	}

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

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

	.footer-about {
		grid-column: auto;
	}

	.floating-whatsapp {
		border-radius: 50%;
		bottom: 15px;
		padding: 10px;
		right: 15px;
	}

	.floating-whatsapp span {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.floating-whatsapp,
	.single-share,
	.article-cta,
	.related-posts {
		display: none !important;
	}

	body,
	.single-hero {
		background: #fff;
		color: #000;
	}

	.single-layout {
		display: block;
		padding: 0;
	}
}

