/*
Theme Name: Adverlize Custom Theme
Theme URI: https://adverlize.com
Author: Manuel Fink
Author URI: https://adverlize.com
Description: Custom WordPress theme for Adverlize, converted from the static HTML/CSS homepage.
Version: 1.2.8
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: adverlize
*/

* {
	font-family: 'Inter', sans-serif;
}
:root {
/* Gray */
	--color-gray-25: #FDFDFD;
	--color-gray-50: #FAFAFA;
	--color-gray-100: #F5F5F5;
	--color-gray-200: #E9EAEB;
	--color-gray-300: #D5D7DA;
	--color-gray-400: #A4A7AE;
	--color-gray-500: #717680;
	--color-gray-600: #535862;
	--color-gray-700: #414651;
	--color-gray-800: #252B37;
	--color-gray-900: #101828;

/* Brand (Blue) */
	--color-brand-25: #F2F7FD;
	--color-brand-50: #E6F0FA;
	--color-brand-100: #CFE2F4;
	--color-brand-200: #A9C9E8;
	--color-brand-300: #7FAEDB;
	--color-brand-400: #4F90CB;
	--color-brand-500: #2C76BA;
	--color-brand-600: #0B5FA5;
	--color-brand-700: #094F8A;
	--color-brand-800: #073D6B;
	--color-brand-900: #052C4D;

/* Blue Light */
	--color-blue-light-25: #F5FBFF;
	--color-blue-light-50: #F0F9FF;
	--color-blue-light-100: #E0F2FE;
	--color-blue-light-200: #B9E6FE;
	--color-blue-light-300: #7CD4FD;
	--color-blue-light-400: #36BFFA;
	--color-blue-light-500: #0BA5EC;
	--color-blue-light-600: #0086C9;
	--color-blue-light-700: #026AA2;
	--color-blue-light-800: #065986;
	--color-blue-light-900: #0B4A6F;

/* Error */
	--color-error-25: #FFFBFA;
	--color-error-50: #FEF3F2;
	--color-error-100: #FEE4E2;
	--color-error-200: #FECDCA;
	--color-error-300: #FDA29B;
	--color-error-400: #F97066;
	--color-error-500: #F04438;
	--color-error-600: #D92D20;
	--color-error-700: #B42318;
	--color-error-800: #912018;
	--color-error-900: #7A271A;

/* Warning */
	--color-warning-25: #FFFCF5;
	--color-warning-50: #FFFAEB;
	--color-warning-100: #FEF0C7;
	--color-warning-200: #FEDF89;
	--color-warning-300: #FEC84B;
	--color-warning-400: #FDB022;
	--color-warning-500: #F79009;
	--color-warning-600: #DC6803;
	--color-warning-700: #B54708;
	--color-warning-800: #93370D;
	--color-warning-900: #7A2E0E;

/* Success */
	--color-success-25: #F6FEF9;
	--color-success-50: #ECFDF3;
	--color-success-100: #D1FADF;
	--color-success-200: #A6F4C5;
	--color-success-300: #6CE9A6;
	--color-success-400: #32D583;
	--color-success-500: #12B76A;
	--color-success-600: #039855;
	--color-success-700: #027A48;
	--color-success-800: #05603A;
	--color-success-900: #054F31;

/* Accent */
	--color-accent: #F59E0B;
	--color-accent-200: #FFD08C;

/* Background */
	--color-bg-tint: #F2F7FD;
}
h1.xl2 {
	font-size: 4.5rem;
	line-height: 5.625rem;
	letter-spacing: -2%;
}
h1.xl {
	font-size: 3.75rem;
	line-height: 4.5rem;
	letter-spacing: -2%;
}
h1, h1.lg {
	font-size: 3rem;
	line-height: 3.75rem;
	letter-spacing: -2%;
}
h2 {
	font-size: 2.25rem;
	line-height: 2.75rem;
	letter-spacing: -2%;
}
h3 {
	font-size: 1.875rem;
	line-height: 2.375rem;
}
h4 {
	font-size: 1.5rem;
	line-height: 2rem;
}
p.xl, a.xl {
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: bold;
}
p.lg, a.lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: bold;
}
p.md, p , a.md, a{
	font-size: 1rem;
	line-height: 1.5rem;
}
a {
	text-decoration: underline;
	text-decoration-style: dashed;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
a:hover:not(.social) {
	opacity: 0.7;
}
p.sm, a.sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
p.xs, a.xs {
	font-size: 0.75rem;
	line-height: 1.125rem;
}
.centeredHeading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px;
}
.centeredHeading h2 {
	line-height: 2.25rem !important;
	margin-bottom: 20px !important;
}
.centeredHeading p {
	line-height: 1rem !important;
}
.section-dark {
	background-color: var(--color-brand-900);
}
.section-dark p {
	color: var(--color-gray-300);
}
.section-light p {
	color: var(--color-gray-600);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark p.xl {
	color: var(--color-brand-50) !important;
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light p.xl {
	color: var(--color-brand-900)
}
p.invisible, h1.invisible, h2.invisible, h3.invisible, h4.invisible {
	color: transparent;
}
.noSpacing {
	padding: 0 !important;
	margin: 0 !important;
}
p.label {
	font-size: 12px;
	padding: 2px 8px !important;
	border-radius: 25px;
}
.section-dark p.label {
	color: var(--color-blue-light-200) !important;
	background-color: var(--color-blue-light-800);
}
.section-light p.label {
	color: var(--color-blue-light-700) !important;
	background-color: var(--color-blue-light-50);
}
.iconDarkBg {
	background-color: var(--color-brand-700);
	padding: 12px;
	border-radius: 24px;
	height: 24px;
	width: 24px;
    overflow: visible;
}
.card {
	border-radius: 12px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	box-shadow: 0px 1px 3px 0px rgba(10, 13, 18, 10%), 0px 1px 2px 0px rgba(10, 13, 18, 6%);
}
.fourStepSection .centeredHeading, .featuredWorkSection .centeredHeading {
	padding-bottom: 32px;
}
.row {
	display: flex;
	gap: 32px;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
}
button.button-xl {
	padding: 12px 20px;
	background-color: var(--color-brand-700);
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
	max-width: fit-content;
	display: flex;
	gap: 4px;
	align-items: center;
}
button img {
	filter: invert(99%) sepia(0%) saturate(374%) hue-rotate(190deg) brightness(118%) contrast(100%);
	height: 12px;
	width: fit-content;
}
button.button-xl:hover {
	background-color: var(--color-brand-800);
	transition: all 0.2s ease-in-out;
}
button.button-color-accent {
	background-color: var(--color-accent);
}
button.button-color-accent:hover {
	opacity: 0.8;
	background-color: var(--color-accent) !important;
}
html, body {
	margin: 0;
	padding: 0;
}
.noselect, img{
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.page-seperator {
	width: 75%;
	height: 1px;
	background-color: var(--color-gray-300);
	margin: auto;
}
.space-between {
	justify-content: space-between !important;
}
.card{
	transition: all 0.2s ease-in-out;
}
.card:hover {
	transform: scale(1.01);
}
.social-icons {
	display: flex;
	align-items: center;
	gap: 8px;
}
.social-icons .icon {
	color: var(--color-gray-500);
	transition: all 0.2s ease-in-out;
	height: 20px;
	width: 20px;
}
.social-icons .icon:hover {
	color: var(--color-gray-600);
	transform: scale(1.2);
}
.icon, .icon-md{
	transition: all 0.2s ease-in-out;
    height: 24px;
	width: 24px;
}
.icon-sm {
	height: 20px !important;
	width: 20px !important;
}
.icon-lg {
	height: 32px !important;
	width: 32px !important;
}

/* Header */
header {
	display: flex;
	flex-direction: column;
	justify-content: space-between !important;
	border-bottom: 1px solid var(--color-gray-300);
}
/* Top Line */
.topLine{
	text-align: center;
}
.topLine p {
	margin: 0;
	padding: 8px 0;
	color: var(--color-brand-25);
}
/* Main Line */
.mainLine {
	padding: 20px 60px;
	display: flex;
	justify-content: space-between;
}
.mainLine a {
	text-decoration: none;
	color: var(--color-gray-900);
}
.brandingRow {
	display: flex;
	justify-content: flex-start;
	align-items: center;
    width: 25%
}
.brandingRow:hover {
	cursor: pointer;
}
.brandingRow svg {
    display: block;
    width: 150px;
    height: 35px;
    color: var(--color-brand-600);
}
.navRow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.navRow a {
	white-space: nowrap;
}
.navRow a:hover {
	color: var(--color-gray-600);
}
.navRow .currentPageLink {
	font-weight: bold;
	color: var(--color-gray-800);
	text-decoration: underline;
}
.rightRow .languageSelector select {
	border: none;
	background: none;
}
.rightRow {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
    width: 25%;
}

/* Hero Section */
.heroSection {
	height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url(src/heroBackgroundPatternNoOpacity.png);
	background-repeat: repeat-x;
	background-size: auto 100%;
}
.heroBackgroundOpacity {
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.93);
}
.heroSection h1 {
	margin: 0;
}
.heroTitleStack {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 0 auto;
}

.heroHighlightedHeading {
	position: absolute;
	left: 50%;
	bottom: 100%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
	pointer-events: none;
}

.heroHighlightedHeading h1.highlighted {
	color: var(--color-brand-600);
}

.heroHighlightedHeading h1 {
	margin: 0;
	padding: 0;
}

.heroHighlightedHeading .upperRow,
.heroHighlightedHeading .lowerRow,
.heroTopRow {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: baseline;
	width: max-content;
}

.heroHighlightedHeading .upperRow {
	opacity: 0.03;
}

.heroHighlightedHeading .lowerRow {
	opacity: 0.1;
}

.heroTopRow {
	position: relative;
	z-index: 2;
}
.heroContent {
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.heroContent .highlighted {
	color: var(--color-brand-600);
}
.heroSection {
	position: relative;
	z-index: 1;
	overflow: visible;
}

.heroSection .pattern {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(50%);

	width: calc(100% - var(--layout-page-margin) - var(--layout-page-margin));
	max-width: var(--layout-max-width);
	height: 140px;
	margin-inline: auto;

	display: flex;
	justify-content: flex-end;
	align-items: center;

	z-index: 5;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.heroSection .patternIcon {
	height: 100%;
	width: auto;
	display: block;
}

/* Offer Section */
.offerSection {
	padding: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}
.offerSection .textColumn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}
.offerSection p {
	white-space: nowrap;
}
.offerSection .card {
	display: flex;
	gap: 20px;
	border: 1px solid #366086;
	box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 8%), 0px 8px 8px -4px rgba(10, 13, 18, 3%);
	width: 25%;
}
.offerSection .icon {
	color: var(--color-brand-300) !important;
}
.horizontalCardList {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
/* Four Step Section */
.fourStepSection .card {
	border: 1px solid var(--color-gray-300);
	max-width: 500px;
	transition: transform 0.2s ease-out;
	transform-origin: center center;
}
.fourStepSection .card:hover {
	transform: none;
}
.fourStepSection .verticalLine {
	width: 1px;
	height: auto;
	background-color: var(--color-gray-300);
	align-self: stretch;
	position: relative;
}
.fourStepSection .line-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background-color: var(--color-brand-500);
}
.fourStepSection .icon {
	width: 70px !important;
	height: fit-content !important;
}
.fourStepSection .verticalList {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fourStepSection {
	padding: 80px;
}

/* Animated Word Rotator */
.animated-word-container {
    display: inline-flex;
    width: 18ch;
    position: relative;
    overflow: hidden;
    vertical-align: baseline;
    justify-content: center;
}

.animated-word {
    display: inline-block;
    width: 100%;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.animated-word.fade-out {
	opacity: 0;
	transform: translateY(-16px);
}

.animated-word {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Featured Work Section */
.featuredWorkSection {
	padding: 80px;
}
.featuredWorkSection .mockups {
	width: 50%;
	height: auto;
	margin: auto;
}
.featuredWorkSection .column {
	gap: 0px;
}
.featuredWorkSection .row {
	justify-content: center !important;
	align-items: center !important;
}
.featuredWorkSection ul {
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}
.textColumn .title {
	padding: 0;
	margin: 0;
	line-height: 1rem;
}
.buttonRow {
	padding-top: 24px;
}
.buttonRow .link {
	cursor: pointer;
}
.buttonRow .link img {
	height: 12px;
	width: fit-content;
}
.buttonRow .link p {
	text-decoration: underline;
	text-decoration-style: dashed;
}
.featuredWorkSection li {
	font-size: 0.875rem;
	color: var(--color-gray-600);
}
.featuredWorkSection p.xs {
	color: var(--color-gray-500);
}
.featuredWorkSection p.md {
	color: var(--color-gray-700);
	font-weight: bold;
}
.featuredWorkSection .space-between {
	display: flex !important;
	width: 100%;
	justify-content: space-between !important;
}
.featuredWorkSection .column {
	max-width: 40%;
}
.featuredWorkSection .link {
	display: flex;
	gap: 8px;
	align-items: center;
}
/* Why Us Section */
.whyUsSection {
	padding: 80px;
}
.whyUsSection .card {
	border: 1px solid #366086;
	box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 8%), 0px 8px 8px -4px rgba(10, 13, 18, 3%);
	width: 40%;
	gap: 20px;
}
.whyUsSection .icon-lg {
	color: var(--color-brand-300) !important;
}
.whyUsSection .horizontalCardList {
	gap: 40px;
	padding: 20px;
	justify-content: center;
}
/* About Us Section */
.aboutUsSection {
	padding: 80px;
}
.aboutUsSection .avatar{
	width: 300px;
	height: fit-content;
	padding: 8px;
}
.aboutUsSection p.md{
	font-weight: bold;
}
.aboutUsSection .textColumn .role {
	padding-bottom: 16px !important;
}
.aboutUsSection .textColumn .description {
	padding-bottom: 8px !important;
	text-align: justify;
}
.aboutUsSection .textColumn{
	max-width: 55%;
}
.aboutUsSection .buttonRow{
	width: 100%;
	padding: 16px 0 0 0 !important;
	align-items: center !important;
}
.aboutUsSection .iconRow .item{
	display: flex;
	gap: 4px;
	justify-content: center;
	align-items: center;
}
.aboutUsSection .iconRow .icon{
	width: 22px;
    height: 22px;
}
/* Call To Action Section */
.callToActionSection {
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
}
.callToActionSection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px;
	background-color: var(--color-accent-200);
	width: 70%;
	border-radius: 12px;
	box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 8%), 0px 4px 6px -2px rgba(10, 13, 18, 3%);
}

/*   FOOTER   */
footer .mainRow {
	padding: 80px 0;
	background-color: var(--color-brand-900);
	color: var(--color-gray-300);
	display: flex;
	justify-content: space-around !important;
	gap: 0px !important;
}
footer .brandColumn .branding {
	height: 40px;
	width: 200px;
	padding-bottom: 8px;
    color: var(--color-gray-300) !important;
}
footer .mainRow .brandColumn {
	max-width: 25%;
}
footer .mainRow .brandColumn .iconRow {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 8px;
}
footer .mainRow .brandColumn p.description {
	margin: 8px 0 !important;
}
footer .icon {
	width: 20px !important;
}
footer .mainRow p.md {
	font-weight: bold;
	margin-bottom: 16px !important;
}
footer .mainRow .column {
	display: flex;
	flex-direction: column;
}
footer .mainRow nav.column {
	gap: 12px;
}
footer .mainRow .social-icons .icon {
	color: var(--color-gray-300);
}
footer .mainRow .social-icons .icon:hover {
	color: var(--color-gray-25);
}
footer .bottomRow {
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 12px 0;
	background-color: var(--color-brand-800);
	color: var(--color-gray-300);
}
footer .bottomRow a {
	color: var(--color-gray-300);
	text-decoration: none;
}

/* Unified Page Width */
:root {
	--layout-max-width: 1240px;
	--layout-page-margin: clamp(24px, 5vw, 80px);
}

/* Shared content width */
.mainLine,
.heroContent,
.offerSection > .centeredHeading,
.offerSection > .horizontalCardList,
.fourStepSection > .centeredHeading,
.fourStepSection > .verticalList,
.featuredWorkSection > .centeredHeading,
.featuredWorkSection > .row,
.whyUsSection > .centeredHeading,
.whyUsSection > .horizontalCardList,
.aboutUsSection > .centeredHeading,
.aboutUsSection > .row,
.callToActionSection > .container,
footer .mainRow {
	width: calc(100% - var(--layout-page-margin) - var(--layout-page-margin));
	max-width: var(--layout-max-width);
	margin-inline: auto;
	box-sizing: border-box;
}

/* Remove old horizontal section padding */
.mainLine {
	padding: 20px 0;
}

.offerSection {
	padding: 60px 0;
}

.fourStepSection,
.featuredWorkSection,
.whyUsSection,
.aboutUsSection {
	padding: 80px 0;
}

/* Keep footer background full-width, but content aligned */
footer {
	background-color: var(--color-brand-900);
}

footer .mainRow {
	background-color: transparent;
}

footer .bottomRow {
	padding-inline: var(--layout-page-margin);
}

/* Fix blurry 4 step cards by removing text scaling */
.fourStepSection .card {
	transform: none !important;
	will-change: auto;
}

.fourStepSection .card.is-active {
	box-shadow: 0px 12px 24px rgba(10, 13, 18, 0.12);
	border-color: var(--color-brand-400);
}


/* CTA same width as other sections */
.callToActionSection .container {
	width: calc(100% - var(--layout-page-margin) - var(--layout-page-margin));
	max-width: var(--layout-max-width);
	box-sizing: border-box;
}


/* Footer link underline fix */
footer a {
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
	width: fit-content;
	transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

footer a:hover {
	opacity: 1 !important;
	color: var(--color-gray-25);
	border-bottom-color: currentColor;
}

footer .social-icons a {
	border-bottom: none;
}
/* WordPress helpers */
.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;
    width: 1px;
    word-wrap: normal !important;
}

/* Default WordPress page template */
.standardPageSection {
    padding: 80px 0;
}

.standardPageContainer {
    width: calc(100% - var(--layout-page-margin) - var(--layout-page-margin));
    max-width: var(--layout-max-width);
    margin-inline: auto;
    box-sizing: border-box;
}

.pageContent {
    max-width: 760px;
}

/* WordPress/browser link reset: prevents default blue/purple underlined links */
a,
a:visited,
a:hover,
a:focus {
	color: inherit;
}

a {
	text-decoration: none;
}

.navRow .currentPageLink {
	text-decoration: underline;
	text-decoration-style: solid;
	text-underline-offset: 4px;
}

.buttonRow .link p {
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 3px;
}

footer a,
footer a:visited {
	color: var(--color-gray-300);
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
}

footer .social-icons a,
footer .social-icons a:visited {
	border-bottom: none;
}

/* Responsive layout and mobile navigation */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
}

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

.mobileMenuToggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-gray-300);
	border-radius: 10px;
	background: var(--color-gray-25);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
}

.mobileMenuToggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 99px;
	background: var(--color-brand-900);
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.siteHeader.is-open .mobileMenuToggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.siteHeader.is-open .mobileMenuToggle span:nth-child(2) {
	opacity: 0;
}

.siteHeader.is-open .mobileMenuToggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1180px) {
	.offerSection .horizontalCardList,
	.whyUsSection .horizontalCardList {
		gap: 24px;
	}

	.offerSection .card {
		width: auto;
		flex: 1 1 0;
	}

	.offerSection p {
		white-space: normal;
	}
}

@media (max-width: 980px) {
	h1.xl2,
	h1.xl,
	h1,
	h1.lg {
		font-size: clamp(2.25rem, 7vw, 3.5rem);
		line-height: 1.08;
	}

	h2 {
		font-size: clamp(1.875rem, 5vw, 2.25rem);
		line-height: 1.15;
	}

	h3 {
		font-size: clamp(1.5rem, 4vw, 1.875rem);
		line-height: 1.2;
	}

	.topLine p {
		padding: 8px var(--layout-page-margin);
	}

	.mainLine {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		row-gap: 0;
		padding: 16px 0;
	}

	.brandingRow {
		width: auto;
	}

	.brandingRow svg {
		width: 140px;
		height: 32px;
	}

	.mobileMenuToggle {
		display: flex;
		grid-column: 2;
		grid-row: 1;
	}

	.navRow,
	.rightRow {
		grid-column: 1 / -1;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
		transition: max-height 0.25s ease-in-out, opacity 0.2s ease-in-out, padding 0.2s ease-in-out;
	}

	.navRow {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
	}

	.navRow a {
		width: 100%;
		padding: 14px 0;
		border-top: 1px solid var(--color-gray-200);
	}

	.rightRow {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
	}

	.rightRow .languageSelector select {
		width: 100%;
		padding: 10px 0;
		border-top: 1px solid var(--color-gray-200);
	}

	.rightRow .button-xl {
		width: 100%;
		max-width: none;
		justify-content: center;
	}

	.siteHeader.is-open .navRow {
		max-height: 360px;
		opacity: 1;
		pointer-events: auto;
		padding-top: 16px;
	}

	.siteHeader.is-open .rightRow {
		max-height: 220px;
		opacity: 1;
		pointer-events: auto;
		padding-top: 4px;
	}

	.heroSection {
		height: auto;
		min-height: 620px;
		background-size: auto 100%;
	}

	.heroContent {
		padding: 120px 0 96px;
	}

	.heroSection .pattern {
		height: 110px;
	}

	.animated-word-container {
		width: min(86vw, 18ch);
	}

	.horizontalCardList {
		flex-wrap: wrap;
		gap: 24px;
	}

	.offerSection .card,
	.whyUsSection .card {
		width: auto;
		flex: 1 1 280px;
	}

	.featuredWorkSection > .row,
	.aboutUsSection > .row {
		flex-direction: column;
		align-items: flex-start !important;
	}

	.featuredWorkSection .mockups {
		width: 100%;
		max-width: 680px;
	}

	.featuredWorkSection .column,
	.aboutUsSection .textColumn {
		max-width: 100%;
		width: 100%;
	}

	.aboutUsSection .picture {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.aboutUsSection .avatar {
		width: min(320px, 100%);
	}

	footer .mainRow {
		flex-wrap: wrap;
		justify-content: flex-start !important;
		gap: 48px !important;
	}

	footer .mainRow .brandColumn {
		max-width: 100%;
		flex-basis: 100%;
	}

	footer .mainRow nav.column {
		min-width: 180px;
	}
}

@media (max-width: 720px) {
	:root {
		--layout-page-margin: clamp(18px, 6vw, 32px);
	}

	p.xl,
	a.xl {
		font-size: 1.125rem;
		line-height: 1.625rem;
	}

	button.button-xl {
		width: 100%;
		max-width: none;
		justify-content: center;
	}

	.offerSection,
	.fourStepSection,
	.featuredWorkSection,
	.whyUsSection,
	.aboutUsSection,
	.standardPageSection {
		padding: 56px 0;
	}

	.centeredHeading {
		align-items: flex-start;
		text-align: left;
	}

	.centeredHeading h2 {
		line-height: 1.15 !important;
	}

	.heroSection {
		min-height: 560px;
	}

	.heroContent {
		align-items: flex-start;
		text-align: left;
		padding: 96px 0 84px;
	}

	.heroTitleStack {
		margin: 0;
	}

	.heroHighlightedHeading {
		left: 0;
		transform: none;
		align-items: flex-start;
	}

	.heroHighlightedHeading .upperRow,
	.heroHighlightedHeading .lowerRow,
	.heroTopRow {
		justify-content: flex-start;
	}

	.animated-word-container {
		justify-content: flex-start;
		text-align: left;
		width: min(90vw, 18ch);
	}

	.heroSection .pattern {
		height: 88px;
	}

	.card {
		padding: 18px;
		gap: 18px;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.offerSection .card,
	.whyUsSection .card {
		flex-basis: 100%;
	}

	.fourStepSection .verticalList {
		gap: 20px;
	}

	.fourStepSection .row {
		display: grid;
		grid-template-columns: 48px 1px minmax(0, 1fr);
		gap: 16px;
		align-items: stretch !important;
	}

	.fourStepSection .icon {
		width: 48px !important;
		align-self: start;
	}

	.fourStepSection .card {
		max-width: none;
		width: 100%;
	}

	.featuredWorkSection .buttonRow,
	.aboutUsSection .buttonRow,
	.aboutUsSection .iconRow {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 16px;
	}

	.featuredWorkSection .space-between,
	.aboutUsSection .space-between {
		justify-content: flex-start !important;
	}

	.aboutUsSection .textColumn .description {
		text-align: left;
	}

	.callToActionSection {
		margin-bottom: 48px;
	}

	.callToActionSection .container {
		align-items: flex-start;
		padding: 32px;
	}

	footer .mainRow {
		padding: 56px 0;
		flex-direction: column;
		gap: 32px !important;
	}

	footer .mainRow .brandColumn,
	footer .mainRow nav.column {
		width: 100%;
	}

	footer .bottomRow {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding-block: 18px;
	}
}

@media (max-width: 480px) {
	.brandingRow svg {
		width: 128px;
	}

	.heroSection {
		min-height: 520px;
	}

	.heroContent {
		padding: 84px 0 72px;
	}

	.heroSection .pattern {
		height: 64px;
	}

	.fourStepSection .row {
		grid-template-columns: 40px 1px minmax(0, 1fr);
		gap: 12px;
	}

	.fourStepSection .icon {
		width: 40px !important;
	}

	.fourStepSection .card {
		flex-direction: column;
		gap: 10px;
	}

	.callToActionSection .container {
		padding: 28px 22px;
	}
}


/* Final responsive header refinements */
.siteHeader {
	position: relative;
	z-index: 1000;
	background: var(--color-gray-25);
}

.topLine p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.heroTitleStack,
.heroHighlightedHeading,
.heroHighlightedHeading .upperRow,
.heroHighlightedHeading .lowerRow,
.heroTopRow,
.animated-word-container,
.animated-word {
	white-space: nowrap;
}

.animated-word-container {
	width: max-content;
	max-width: none;
}

.mobileHeaderActions {
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.mobileLanguageSelector select {
	border: 1px solid var(--color-gray-300);
	border-radius: 10px;
	background: var(--color-gray-25);
	color: var(--color-brand-900);
	padding: 10px 8px;
	height: 44px;
	font: inherit;
}

@media (max-width: 980px) {
	.mainLine {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		position: relative;
	}

	.mobileHeaderActions {
		display: flex;
		grid-column: 2;
		grid-row: 1;
	}

	.mobileMenuToggle {
		display: flex;
		grid-column: auto;
		grid-row: auto;
	}

	.rightRow {
		display: none;
	}

	.navRow {
		position: absolute;
		top: calc(100% + 16px);
		left: 0;
		right: 0;
		z-index: 999;
		width: 100%;
		background: var(--color-gray-25);
		border: 1px solid var(--color-gray-200);
		border-radius: 14px;
		box-shadow: 0px 16px 32px rgba(10, 13, 18, 0.12);
		padding: 8px 18px;
		max-height: none;
		overflow: visible;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
	}

	.siteHeader.is-open .navRow {
		max-height: none;
		opacity: 1;
		pointer-events: auto;
		padding-top: 8px;
		transform: translateY(0);
	}

	.siteHeader.is-open .rightRow {
		display: none;
	}

	.navRow a:first-child {
		border-top: none;
	}

	.heroTitleStack h1 {
		font-size: clamp(2rem, 7vw, 3.5rem);
		line-height: 1.08;
	}
}

@media (max-width: 480px) {
	.topLine p {
		font-size: 0.75rem;
		line-height: 1rem;
	}

	.brandingRow svg {
		width: 122px;
	}

	.mobileHeaderActions {
		gap: 8px;
	}

	.mobileLanguageSelector select,
	.mobileMenuToggle {
		height: 40px;
	}

	.mobileMenuToggle {
		width: 40px;
	}

	.heroTitleStack h1 {
		font-size: clamp(1.75rem, 7.4vw, 2.4rem);
	}
}

/* V3 mobile fixes: one-line hero, inline language/burger, overlay menu */
@media (max-width: 980px) {
	.siteHeader {
		position: relative !important;
		z-index: 9999 !important;
	}

	.mainLine {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 16px !important;
	}

	.mobileHeaderActions {
		display: inline-flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 10px !important;
		width: auto !important;
		margin-left: auto !important;
		flex: 0 0 auto !important;
	}

	.mobileLanguageSelector {
		display: block !important;
		width: auto !important;
		flex: 0 0 auto !important;
	}

	.mobileLanguageSelector select {
		display: block !important;
		width: auto !important;
		min-width: 58px !important;
	}

	.mobileMenuToggle {
		display: inline-flex !important;
		position: relative !important;
		width: 44px !important;
		height: 44px !important;
		flex: 0 0 44px !important;
	}

	.navRow {
		position: absolute !important;
		top: calc(100% + 10px) !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 10000 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		width: 100% !important;
		max-height: none !important;
		padding: 8px 18px !important;
		margin: 0 !important;
		background: var(--color-gray-25) !important;
		border: 1px solid var(--color-gray-200) !important;
		border-radius: 14px !important;
		box-shadow: 0 16px 32px rgba(10, 13, 18, 0.16) !important;
		overflow: visible !important;
		opacity: 0 !important;
		pointer-events: none !important;
		transform: translateY(-8px) !important;
		transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out !important;
	}

	.siteHeader.is-open .navRow {
		max-height: none !important;
		padding: 8px 18px !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	.rightRow,
	.siteHeader.is-open .rightRow {
		display: none !important;
		max-height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}

	.heroTitleStack,
	.heroHighlightedHeading,
	.heroHighlightedHeading .upperRow,
	.heroHighlightedHeading .lowerRow,
	.heroTopRow,
	.animated-word-container,
	.animated-word {
		white-space: nowrap !important;
		word-break: keep-all !important;
		overflow-wrap: normal !important;
	}

	.animated-word-container {
		display: inline-flex !important;
		width: auto !important;
		max-width: none !important;
		min-width: max-content !important;
		overflow: visible !important;
	}

	.heroTitleStack h1,
	.heroTopRow h1,
	.heroHighlightedHeading h1 {
		font-size: clamp(1.65rem, 5.8vw, 3.5rem) !important;
		line-height: 1.08 !important;
		white-space: nowrap !important;
	}
}

@media (max-width: 480px) {
	.mobileHeaderActions {
		gap: 8px !important;
	}

	.mobileLanguageSelector select,
	.mobileMenuToggle {
		height: 40px !important;
	}

	.mobileMenuToggle {
		width: 40px !important;
		flex-basis: 40px !important;
	}

	.heroTitleStack h1,
	.heroTopRow h1,
	.heroHighlightedHeading h1 {
		font-size: clamp(1.35rem, 5.6vw, 2rem) !important;
	}
}


/* V4 final mobile header fix
   Reason: previous responsive blocks used grid/flex rules in several places.
   This block forces the mobile actions into a two-column grid and keeps the menu absolutely positioned. */
@media (max-width: 980px) {
	.siteHeader,
	header.siteHeader {
		position: relative !important;
		z-index: 9999 !important;
	}

	.mainLine {
		position: relative !important;
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		flex-wrap: nowrap !important;
		gap: 12px !important;
	}

	.brandingRow {
		flex: 1 1 auto !important;
		min-width: 0 !important;
	}

	.mobileHeaderActions {
		display: grid !important;
		grid-template-columns: 58px 44px !important;
		grid-auto-flow: column !important;
		align-items: center !important;
		justify-content: end !important;
		column-gap: 10px !important;
		width: auto !important;
		min-width: 112px !important;
		max-width: 112px !important;
		flex: 0 0 112px !important;
		margin-left: auto !important;
	}

	.mobileLanguageSelector {
		display: block !important;
		grid-column: 1 !important;
		width: 58px !important;
		height: 44px !important;
	}

	.mobileLanguageSelector select {
		display: block !important;
		width: 58px !important;
		height: 44px !important;
		min-width: 0 !important;
		padding: 0 8px !important;
		margin: 0 !important;
		line-height: 44px !important;
	}

	.mobileMenuToggle {
		display: inline-flex !important;
		grid-column: 2 !important;
		position: relative !important;
		width: 44px !important;
		height: 44px !important;
		min-width: 44px !important;
		min-height: 44px !important;
		padding: 0 !important;
		margin: 0 !important;
		flex: none !important;
	}

	.navRow,
	.siteHeader.is-open .navRow {
		position: absolute !important;
		top: calc(100% + 10px) !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 10000 !important;
		width: 100% !important;
		margin: 0 !important;
		background: var(--color-gray-25) !important;
		border: 1px solid var(--color-gray-200) !important;
		border-radius: 14px !important;
		box-shadow: 0 16px 32px rgba(10, 13, 18, 0.16) !important;
	}

	.navRow {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		padding: 8px 18px !important;
		max-height: none !important;
		overflow: visible !important;
		opacity: 0 !important;
		pointer-events: none !important;
		transform: translateY(-8px) !important;
		transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out !important;
	}

	.siteHeader.is-open .navRow {
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	.rightRow,
	.siteHeader.is-open .rightRow,
	.desktopLanguageSelector {
		display: none !important;
	}
}

@media (max-width: 480px) {
	.mobileHeaderActions {
		grid-template-columns: 54px 40px !important;
		column-gap: 8px !important;
		min-width: 102px !important;
		max-width: 102px !important;
		flex-basis: 102px !important;
	}

	.mobileLanguageSelector,
	.mobileLanguageSelector select {
		width: 54px !important;
		height: 40px !important;
		line-height: 40px !important;
	}

	.mobileMenuToggle {
		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		min-height: 40px !important;
	}
}

/* V5 mobile language selector fix
   Keeps EN/DE fully visible and removes the native select border on mobile. */
@media (max-width: 980px) {
	.mobileHeaderActions {
		grid-template-columns: 64px 44px !important;
		column-gap: 10px !important;
		min-width: 118px !important;
		max-width: 118px !important;
		flex: 0 0 118px !important;
	}

	.mobileLanguageSelector {
		width: 64px !important;
		height: 44px !important;
		overflow: visible !important;
	}

	.mobileLanguageSelector select {
		display: block !important;
		width: 64px !important;
		max-width: none !important;
		height: 44px !important;
		padding: 0 22px 0 0 !important;
		margin: 0 !important;
		border: none !important;
		outline: none !important;
		box-shadow: none !important;
		background-color: transparent !important;
		color: var(--color-gray-900) !important;
		font-size: 16px !important;
		line-height: 44px !important;
		text-align: left !important;
		box-sizing: border-box !important;
		-webkit-appearance: menulist !important;
		appearance: auto !important;
	}

	.mobileLanguageSelector select:focus {
		outline: none !important;
		box-shadow: none !important;
	}
}

@media (max-width: 480px) {
	.mobileHeaderActions {
		grid-template-columns: 62px 40px !important;
		column-gap: 8px !important;
		min-width: 110px !important;
		max-width: 110px !important;
		flex-basis: 110px !important;
	}

	.mobileLanguageSelector,
	.mobileLanguageSelector select {
		width: 62px !important;
		height: 40px !important;
		line-height: 40px !important;
	}

	.mobileLanguageSelector select {
		padding: 0 21px 0 0 !important;
	}
}

/* V6 mobile language selector spacing fix */
@media (max-width: 980px) {
	.mobileHeaderActions {
		grid-template-columns: 42px 44px !important;
		column-gap: 10px !important;
		min-width: 96px !important;
		max-width: 96px !important;
		flex: 0 0 96px !important;
	}

	.mobileLanguageSelector {
		position: relative !important;
		width: 42px !important;
		height: 44px !important;
		overflow: visible !important;
	}

	.mobileLanguageSelector::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		width: 10px;
		height: 10px;
		transform: translateY(-50%);
		background: currentColor;
		clip-path: polygon(20% 35%, 50% 65%, 80% 35%, 90% 45%, 50% 85%, 10% 45%);
		pointer-events: none;
		color: var(--color-gray-900);
	}

	.mobileLanguageSelector select {
		width: 42px !important;
		height: 44px !important;
		padding: 0 18px 0 0 !important;
		border: none !important;
		outline: none !important;
		box-shadow: none !important;
		background: transparent !important;
		color: var(--color-gray-900) !important;
		font-size: 16px !important;
		line-height: 44px !important;
		box-sizing: border-box !important;
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		appearance: none !important;
	}

	.mobileLanguageSelector select::-ms-expand {
		display: none !important;
	}
}

@media (max-width: 480px) {
	.mobileHeaderActions {
		grid-template-columns: 42px 40px !important;
		column-gap: 8px !important;
		min-width: 90px !important;
		max-width: 90px !important;
		flex: 0 0 90px !important;
	}

	.mobileLanguageSelector,
	.mobileLanguageSelector select {
		width: 42px !important;
		height: 40px !important;
		line-height: 40px !important;
	}
}


/* V7 mobile dropdown placement fix
   Full-width overlay menu connected directly to the header. */
@media (max-width: 980px) {
	.siteHeader,
	header.siteHeader {
		position: relative !important;
		z-index: 9999 !important;
	}

	.mainLine {
		position: relative !important;
	}

	.navRow,
	.siteHeader.is-open .navRow {
		position: absolute !important;
		top: 100% !important;
		left: calc((100vw - 100%) / -2) !important;
		right: auto !important;
		width: 100vw !important;
		max-width: 100vw !important;
		margin: 0 !important;
		border-left: none !important;
		border-right: none !important;
		border-top: 1px solid var(--color-gray-200) !important;
		border-bottom: 1px solid var(--color-gray-200) !important;
		border-radius: 0 0 14px 14px !important;
		box-shadow: 0 16px 32px rgba(10, 13, 18, 0.16) !important;
		background: var(--color-gray-25) !important;
		z-index: 10000 !important;
	}

	.navRow {
		padding: 0 var(--layout-page-margin) !important;
		opacity: 0 !important;
		pointer-events: none !important;
		transform: none !important;
		visibility: hidden !important;
	}

	.siteHeader.is-open .navRow {
		padding: 0 var(--layout-page-margin) !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: none !important;
		visibility: visible !important;
	}

	.navRow a {
		padding: 15px 0 !important;
	}
}


/* V8 mobile hero background overlay fix
   Covers the full mobile hero background pattern with the white overlay. */
@media (max-width: 980px) {
	.heroSection {
		background-image: linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url(src/heroBackgroundPatternNoOpacity.png) !important;
		background-repeat: repeat-x !important;
		background-size: auto 100% !important;
		background-position: center center !important;
	}

	.heroBackgroundOpacity {
		background-color: transparent !important;
		width: 100% !important;
		height: auto !important;
		min-height: inherit !important;
	}

	.heroContent {
		position: relative !important;
		z-index: 2 !important;
	}
}


/* V9 mobile hero typography and transition pattern fix */
@media (max-width: 980px) {
	.heroSection {
		position: relative !important;
		z-index: 2 !important;
		overflow: visible !important;
		min-height: calc(100dvh - 120px) !important;
		height: auto !important;
	}

	.heroBackgroundOpacity {
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		min-height: calc(100dvh - 120px) !important;
	}

	.heroContent {
		width: calc(100% - var(--layout-page-margin) - var(--layout-page-margin)) !important;
		max-width: var(--layout-max-width) !important;
		margin-inline: auto !important;
		padding: clamp(72px, 14vh, 120px) 0 clamp(112px, 18vh, 160px) !important;
		align-items: flex-start !important;
		justify-content: center !important;
		text-align: left !important;
		min-height: auto !important;
	}

	.heroTitleStack {
		width: 100% !important;
		max-width: 100% !important;
		justify-content: flex-start !important;
		margin: 0 !important;
	}

	.heroTopRow,
	.heroHighlightedHeading .upperRow,
	.heroHighlightedHeading .lowerRow {
		justify-content: flex-start !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.heroHighlightedHeading {
		left: 0 !important;
		transform: none !important;
		align-items: flex-start !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.animated-word-container {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		justify-content: flex-start !important;
		overflow: visible !important;
	}

	.heroTitleStack h1,
	.heroTopRow h1,
	.heroHighlightedHeading h1 {
		font-size: clamp(2rem, 8.85vw, 3.25rem) !important;
		line-height: 1.04 !important;
		letter-spacing: -0.04em !important;
		white-space: nowrap !important;
	}

	.heroContent > h1:not(.highlighted) {
		font-size: clamp(3.35rem, 13.8vw, 5.25rem) !important;
		line-height: 1.04 !important;
		letter-spacing: -0.055em !important;
		max-width: 100% !important;
		margin-top: 4px !important;
	}

	.heroContent p {
		max-width: 100% !important;
		font-size: clamp(1.2rem, 4.8vw, 1.75rem) !important;
		line-height: 1.35 !important;
	}

	.heroContent .button-xl {
		width: 100% !important;
		max-width: 100% !important;
		justify-content: center !important;
		font-size: clamp(1.15rem, 4.4vw, 1.5rem) !important;
		padding: 16px 20px !important;
	}

	.heroSection .pattern {
		position: absolute !important;
		left: var(--layout-page-margin) !important;
		right: auto !important;
		bottom: 0 !important;
		transform: translateY(50%) !important;
		width: 144px !important;
		height: 144px !important;
		max-width: none !important;
		margin: 0 !important;
		display: flex !important;
		justify-content: flex-start !important;
		align-items: center !important;
		z-index: 50 !important;
		pointer-events: none !important;
	}

	.heroSection .patternIcon {
		display: block !important;
		width: 72px !important;
		height: 144px !important;
	}

	.offerSection {
		position: relative !important;
		z-index: 1 !important;
		padding-top: 96px !important;
	}
}

@media (max-width: 480px) {
	.heroTitleStack h1,
	.heroTopRow h1,
	.heroHighlightedHeading h1 {
		font-size: clamp(2rem, 8.9vw, 2.55rem) !important;
		letter-spacing: -0.045em !important;
	}

	.heroContent > h1:not(.highlighted) {
		font-size: clamp(3.2rem, 13.4vw, 4.25rem) !important;
		letter-spacing: -0.06em !important;
	}

	.heroSection .pattern {
		left: calc(var(--layout-page-margin) + 72px) !important;
	}
}


/* V10 mobile hero refinement: remove transition pattern and keep changing line inside margins */
@media (max-width: 980px) {
	.heroSection .pattern,
	.heroSection .patternIcon {
		display: none !important;
	}

	.heroTitleStack,
	.heroTopRow,
	.heroHighlightedHeading,
	.heroHighlightedHeading .upperRow,
	.heroHighlightedHeading .lowerRow,
	.animated-word-container {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.heroTitleStack h1,
	.heroTopRow h1,
	.heroHighlightedHeading h1 {
		font-size: clamp(1.85rem, 8vw, 3rem) !important;
		line-height: 1.04 !important;
		letter-spacing: -0.045em !important;
		white-space: nowrap !important;
		max-width: 100% !important;
	}

	.animated-word {
		max-width: 100% !important;
		white-space: nowrap !important;
	}

	.offerSection {
		padding-top: 60px !important;
	}
}

@media (max-width: 480px) {
	.heroTitleStack h1,
	.heroTopRow h1,
	.heroHighlightedHeading h1 {
		font-size: clamp(1.75rem, 7.9vw, 2.35rem) !important;
		line-height: 1.04 !important;
		letter-spacing: -0.05em !important;
	}
}


/* V11 mobile hero heading size alignment */
@media (max-width: 980px) {
	.heroContent > h1:not(.highlighted) {
		font-size: clamp(1.85rem, 8vw, 3rem) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.045em !important;
		max-width: 100% !important;
		margin-top: 8px !important;
	}
}

@media (max-width: 480px) {
	.heroContent > h1:not(.highlighted) {
		font-size: clamp(1.75rem, 7.9vw, 2.35rem) !important;
		line-height: 1.08 !important;
		letter-spacing: -0.05em !important;
	}
}
