@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@400;800&display=swap');
/*
Animation of mobile toggle menu
*/
@keyframes fade-in {
	from {
		visibility: hidden;
		opacity: 0;
	}
	to {
		visibility: visible;
		opacity: 1;
	}
}
.fade-in {
	animation: fade-in 300ms ease-in-out forwards;
}

@keyframes fade-out {
	from {
		visibility: visible;
		opacity: 1;
	}
	to {
		visibility: hidden;
		opacity: 0;
	}
}
.fade-out {
	animation: fade-out 300ms ease-in-out forwards;
}

.slideInLeft {
	animation-name: animateInLeft;
	z-index: 1000;
}

.slideInRight {
	animation-name: animateInRight;
	z-index: 1000;
}

.slideOutLeft {
	transform: translateX(-100%);
}

.slideOutRight {
	transform: translateX(100%);
}

@keyframes animateInLeft {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}
@keyframes animateInRight {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0%);
	}
}
.slideInTop {
	animation-name: animateInTop;
	z-index: 1000;
}

.slideInBottom {
	animation-name: animateInBottom;
	z-index: 1000;
}

.slideOutTop {
	animation-name: animateOutTop;
}

.slideOutBottom {
	animation-name: animateOutBottom;
}

@keyframes animateInTop {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}
@keyframes animateInBottom {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}
@keyframes animateOutTop {
	0% {
		transform: translateY(0%);
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		transform: translateY(-100%);
		opacity: 0;
	}
}
@keyframes animateOutBottom {
	0% {
		transform: translateY(0%);
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		transform: translateY(100%);
		opacity: 0;
	}
}
h1,
h2,
h3 {
	font-family: 'Commissioner', sans-serif;
	font-weight: 800;
}

h1 {
	font-size: 2.5rem;
	line-height: 2.5rem;
	margin: 1rem 0rem;
}
@media screen and (min-width: 40em) {
	h1 {
		font-size: 3.5rem;
		line-height: 3.5rem;
	}
}
@media screen and (min-width: 64em) {
	h1 {
		font-size: 5rem;
		line-height: 5.5rem;
	}
}

h2 {
	font-size: 2rem;
	line-height: 2.5rem;
	margin-top: 1.375rem;
}
@media screen and (min-width: 64em) {
	h2 {
		font-size: 3.5rem;
		line-height: 4rem;
	}
}

h3 {
	font-size: 0.9375rem;
	line-height: 1.5625rem;
}
@media screen and (min-width: 64em) {
	h3 {
		font-size: 1.125rem;
		line-height: 2rem;
	}
}

h4 {
	font-size: 1rem;
}

h5 {
	font-size: 1rem;
	font-weight: 400;
	text-decoration: underline;
}

h6 {
	font-size: 0.9rem;
	font-weight: 400;
	text-decoration: underline;
}

p {
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5625rem;
	margin-top: 1.5rem;
	margin-bottom: 2.5rem;
}
@media screen and (min-width: 64em) {
	p {
		font-size: 1.125rem;
		line-height: 2rem;
	}
}

.color--primary {
	color: #eb6434;
}

.color--light {
	color: white;
}

* {
	box-sizing: border-box;
}

body {
	box-sizing: border-box;
	font-family: 'Commissioner', sans-serif;
	margin: 0;
	padding: 0;
}

body.no-scroll {
	overflow: hidden;
}

a:focus,
a:focus-visible {
	border: dotted 2px blue;
}

.sr-only {
	width: 1px;
	height: 1px;
	position: absolute;
	overflow: hidden;
	background-color: transparent;
	border: none;
	color: transparent;
	text-decoration: none;
}

.mobile-only {
	display: block;
}
@media screen and (min-width: 40em) {
	.mobile-only {
		display: none;
	}
}

.tablet-desktop {
	display: block;
}
@media screen and (max-width: 39.9375em) {
	.tablet-desktop {
		display: none;
	}
}

.button,
.button--underline,
.button--secondary,
.button--primary {
	text-decoration: none;
	font-weight: 800;
	text-transform: capitalize;
	display: inline-block;
	transition: background-color 200ms ease-in-out;
	border: none;
	cursor: pointer;
}
.button:hover,
.button--underline:hover,
.button--secondary:hover,
.button--primary:hover {
	background-color: #ff9494;
}
.button :focus,
.button--underline :focus,
.button--secondary :focus,
.button--primary :focus,
.button :focus-visible,
.button--underline :focus-visible,
.button--secondary :focus-visible,
.button--primary :focus-visible {
	border: dotted 2px blue;
}
.button--primary {
	font-size: 1.125rem;
	color: white;
	padding: 1.5625rem 2.1875rem;
	background-color: #eb6434;
}
.button--secondary {
	font-size: 1rem;
	color: white;
	padding: 1.4375rem 1.125rem;
	background-color: #181820;
}
.button--secondary:hover {
	background-color: #434356;
}
@media screen and (min-width: 64em) {
	.button--secondary {
		padding-inline: 2.75rem;
	}
}
.button--underline {
	font-size: 0.9375rem;
	color: #eb6434;
	background-color: transparent;
	padding: 0.5rem 0rem;
	position: relative;
	transition: color 200ms ease-in-out;
}
.button--underline::after {
	content: '';
	position: absolute;
	bottom: 0rem;
	left: 0rem;
	right: 0rem;
	height: 2px;
	width: 100%;
	background-color: #eb6434;
	transition: background-color 200ms ease-in-out;
}
.button--underline:hover {
	color: #ff9494;
	background-color: transparent;
}
.button--underline:hover::after {
	background-color: #ff9494;
}
@media screen and (min-width: 64em) {
	.button--underline {
		font-size: 1.125rem;
	}
}
.button--arrow {
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.button--arrow svg g {
	transition: stroke 200ms ease-in-out;
	fill: black;
}
.button--arrow svg g:hover {
	stroke: #ff9494;
}

.header {
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	align-items: center;
	/*final stat of the animation of hamburger menu*/
}
@media screen and (min-width: 64em) {
	.header {
		column-gap: 1rem;
	}
}
@media screen and (min-width: 64em) {
	.header {
		column-gap: 1rem;
	}
}
.header .logo {
	grid-column: 2/4;
	grid-row: 1;
}
.header .menu {
	align-items: center;
	height: 100%;
	grid-column: 5/-1;
	grid-row: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	padding: 2.5rem 0;
}
.header .menu a {
	text-decoration: none;
	color: white;
}
.header .menu a:hover {
	font-weight: 800;
}
.header .menu a::before {
	display: block;
	content: attr(title);
	font-weight: bold;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
@media screen and (min-width: 40em) {
	.header .menu {
		background-color: #eb6434;
		padding: 3.5625rem 0;
	}
}
@media screen and (min-width: 64em) {
	.header .menu {
		background-color: #eb6434;
		column-gap: 1rem;
	}
}
.header .hamburger-menu {
	grid-column: 5;
	grid-row: 1;
	justify-self: end;
	cursor: pointer;
	border: none;
	background-color: transparent;
}
.header .hamburger-menu span {
	/*transition for animation of hamburger menu*/
	transition: all 300ms ease-in-out;
	width: 1.5rem;
	height: 2px;
	background-color: #434356;
	display: block;
}
.header .hamburger-menu span:not(:last-of-type) {
	margin-bottom: 0.4rem;
}
.header .mobile-nav {
	grid-row: 1;
	position: absolute;
	top: 6rem;
	right: 1rem;
	width: 15.75rem;
	padding: 1.625rem;
	color: white;
	background-color: black;
	text-align: center;
	visibility: hidden;
}
.header .mobile-nav nav {
	list-style-type: none;
}
.header .mobile-nav ul {
	padding: 0;
}
.header .mobile-nav li {
	padding-bottom: 1.5rem;
	text-decoration: none;
	display: block;
}
.header .desktop-nav {
	grid-column: 1/6;
	grid-row: 1;
	justify-self: end;
	color: white;
	font-weight: 400;
	padding-left: 1rem;
}
.header .desktop-nav nav {
	list-style-type: none;
	float: right;
}
.header .desktop-nav ul {
	display: inline;
}
.header .desktop-nav li {
	display: inline-block;
	white-space: nowrap;
	padding-right: 1.25rem;
	padding-bottom: 1rem;
}
@media screen and (min-width: 64em) {
	.header .desktop-nav li {
		padding-right: 2rem;
	}
}
.header .desktop-nav a {
	display: inline-block;
}
.header .open .hamburger-menu span:first-child {
	transform-origin: left;
	transform: rotate(45deg);
}
.header .open .hamburger-menu span:nth-child(2) {
	opacity: 0;
}
.header .open .hamburger-menu span:last-child {
	transform-origin: left;
	transform: rotate(-45deg);
}

.main {
	width: 100%;
}

.hero {
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
}
@media screen and (min-width: 64em) {
	.hero {
		column-gap: 1rem;
	}
}
.hero__image {
	grid-column: 1/-1;
	grid-row: 1;
	height: 12.5rem;
	background-image: url('../assets/mobile/image-hero.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (min-width: 40em) {
	.hero__image {
		background-image: url('../assets/tablet/image-hero.jpg');
		background-position: right;
		background-size: contain;
		height: 100%;
		z-index: -1;
	}
}
@media screen and (min-width: 64em) {
	.hero__image {
		background-image: url('../assets/desktop/image-hero.jpg');
	}
}
.hero__text {
	grid-row: 2;
	grid-column: 2/10;
	z-index: 10;
	padding-top: 2.5rem;
	padding-bottom: 6rem;
}
@media screen and (min-width: 40em) {
	.hero__text {
		grid-row: 1;
		grid-column: 2/7;
		padding-top: 77px;
		padding-bottom: 150px;
	}
}
@media screen and (min-width: 64em) {
	.hero__text {
		grid-column: 2/6;
	}
}

.details {
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	background-color: #eb6434;
}
@media screen and (min-width: 64em) {
	.details {
		column-gap: 1rem;
	}
}
@media screen and (min-width: 40em) {
	.details {
		background-color: transparent;
		grid-template-rows: repeat(12, 6.8rem);
		column-gap: 1rem;
	}
}
@media screen and (min-width: 64em) {
	.details {
		grid-template-rows: repeat(12, 9rem);
	}
}
.details__image {
	grid-column: 1/-1;
	grid-row: 1;
	width: 100%;
	height: 12.5rem;
	background-image: url('../assets/mobile/image-strategic.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (min-width: 40em) {
	.details__image {
		background-image: url('../assets/tablet/image-strategic.jpg');
		height: 41.125rem;
		grid-column: 1/7;
		grid-row: 1/7;
	}
}
@media screen and (min-width: 64em) {
	.details__image {
		background-image: url('../assets/desktop/image-strategic.jpg');
		height: 61.5rem;
	}
}
.details__design {
	padding-top: 3.125rem;
	padding-bottom: 4.5rem;
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	align-content: center;
	justify-content: center;
	grid-row: 2;
	grid-column: 1/-1;
	background-color: #181820;
}
@media screen and (min-width: 64em) {
	.details__design {
		column-gap: 1rem;
	}
}
@media screen and (min-width: 40em) {
	.details__design {
		grid-template-columns: repeat(4, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
		padding: 6.125rem 0 7.5rem 0;
		grid-column: 6/-1;
		grid-row: 1/6;
	}
}
@media screen and (min-width: 64em) {
	.details__design {
		column-gap: 1rem;
		padding: 8rem 0 12.5rem 0;
	}
}
.details__design::before {
	content: '';
	background-image: url('../assets/desktop/bg-pattern-wave-red.svg');
	background-size: cover;
	position: absolute;
	transform: translate(1rem, -4.125rem);
	width: 3.9375rem;
	height: 1.8125rem;
}
@media screen and (min-width: 40em) {
	.details__design::before {
		transform: translate(-1.9687rem, 2.5rem);
	}
}
@media screen and (min-width: 64em) {
	.details__design::before {
		width: 8.4375rem;
		height: 3.8125rem;
		transform: translate(-4.2rem, 2.5rem);
	}
}
.details__headline {
	grid-column: 2/9;
	position: relative;
}
@media screen and (min-width: 64em) {
	.details__headline {
		max-width: 27.8125rem;
	}
}
.details__headline br {
	display: none;
}
@media screen and (min-width: 40em) {
	.details__headline br {
		display: inline;
	}
}
.details__paragraph {
	margin-top: 0;
	grid-column: 2/9;
}
@media screen and (min-width: 40em) {
	.details__paragraph {
		grid-column: 2/5;
	}
}
@media screen and (min-width: 64em) {
	.details__paragraph {
		max-width: 27.8125rem;
	}
}
.details__button {
	grid-column: 2/5;
	justify-self: flex-start;
}
.details__approach {
	grid-row: 3;
	grid-column: 2/10;
	color: white;
	padding-top: 4.625rem;
	padding-bottom: 2.875rem;
}
@media screen and (min-width: 40em) {
	.details__approach {
		background-color: transparent;
		color: black;
		grid-column: 2/5;
		grid-row: 8/13;
		z-index: 10;
	}
}
@media screen and (min-width: 64em) {
	.details__approach {
		grid-column: 2/6;
	}
}
.details__list {
	grid-row: 4;
	grid-column: 1/-1;
	background-color: #eb6434;
	color: white;
	position: relative;
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	/* the default list style type is overwritten with "counter". 
  The leading zero can be set in "list-style-type: decimal-leading-zero",
  but there will be a dot after the number "01. 02. 03. " etc. 

  tutorial: https://codepen.io/maddesigns/pen/JGQejg
  stackoverflow: https://stackoverflow.com/questions/5290587/is-there-a-way-to-append-leading-zeros-to-an-ordered-number-list-01-or-001-as
  documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Lists_and_Counters/Using_CSS_counters
  */
}
@media screen and (min-width: 64em) {
	.details__list {
		column-gap: 1rem;
	}
}
@media screen and (min-width: 40em) {
	.details__list {
		grid-template-columns: repeat(5, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
		padding: 7.5rem 0 7.5rem 0;
		grid-column: 5/-1;
		grid-row: 6/13;
	}
}
@media screen and (min-width: 64em) {
	.details__list {
		padding-top: 12.5rem;
		padding-bottom: 7.5rem;
	}
}
.details__list ol {
	list-style-type: none;
	counter-reset: li;
	display: inline-block;
	padding-left: 1rem;
	margin-bottom: 1.25rem;
	grid-column: 2/9;
}
@media screen and (min-width: 40em) {
	.details__list ol {
		grid-column: 2/6;
	}
}
@media screen and (min-width: 64em) {
	.details__list ol {
		grid-column: 3/6;
		max-width: 27.8125rem;
		padding-left: 0;
	}
}
.details__list li {
	padding-bottom: 2.2rem;
}
.details__list li::before {
	counter-increment: li;
	content: counter(li, decimal-leading-zero);
	position: absolute;
	font-size: 5rem;
	line-height: 5.5rem;
	font-weight: 800;
	left: 1.5rem;
	transform: translateY(-2.8rem);
	opacity: 0.25;
}
@media screen and (min-width: 40em) {
	.details__list li::before {
		left: 4rem;
	}
}
@media screen and (min-width: 64em) {
	.details__list li::before {
		left: 14rem;
	}
}
.details__list p {
	margin-top: 1rem;
}

.slider {
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	align-items: flex-start;
}
@media screen and (min-width: 64em) {
	.slider {
		column-gap: 1rem;
	}
}
.slider .slides {
	overflow-x: hidden;
	grid-column: 1/-1;
	position: relative;
	height: 25.25rem;
}
@media screen and (min-width: 40em) {
	.slider .slides {
		grid-column: 5/-1;
		grid-row: 1;
		height: 29.5rem;
	}
}
@media screen and (min-width: 64em) {
	.slider .slides {
		height: 45.5rem;
	}
}
.slider__image {
	background-color: pink;
	grid-column: 1/-1;
	background-size: cover;
	max-width: 100%;
	height: 25.25rem;
	position: absolute;
	width: 100%;
	transition: transform 500ms ease;
	animation-duration: 500ms;
}
@media screen and (min-width: 40em) {
	.slider__image {
		height: 100%;
	}
}
@media screen and (min-width: 64em) {
	.slider__image {
		height: 100%;
	}
}
.slider .slide0 {
	z-index: 3;
	background-image: url('../assets/mobile/image-slide-1.jpg');
}
@media screen and (min-width: 40em) {
	.slider .slide0 {
		background-image: url('../assets/tablet/image-slide-1.jpg');
	}
}
@media screen and (min-width: 64em) {
	.slider .slide0 {
		background-image: url('../assets/desktop/image-slide-1.jpg');
	}
}
.slider .slide1 {
	z-index: 3;
	background-image: url('../assets/mobile/image-slide-2.jpg');
}
@media screen and (min-width: 40em) {
	.slider .slide1 {
		background-image: url('../assets/tablet/image-slide-2.jpg');
	}
}
@media screen and (min-width: 64em) {
	.slider .slide1 {
		background-image: url('../assets/desktop/image-slide-2.jpg');
	}
}
.slider .slide2 {
	z-index: 3;
	background-image: url('../assets/mobile/image-slide-3.jpg');
}
@media screen and (min-width: 40em) {
	.slider .slide2 {
		background-image: url('../assets/tablet/image-slide-3.jpg');
	}
}
@media screen and (min-width: 64em) {
	.slider .slide2 {
		background-image: url('../assets/desktop/image-slide-3.jpg');
	}
}
.slider .active {
	z-index: 10;
}
.slider__content {
	color: white;
	text-align: right;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, #000000 100%);
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	padding-right: 2rem;
	padding-bottom: 2.125rem;
}
.slider__content h3 {
	margin: 0;
}
.slider__content p {
	margin: 0;
}
.slider__text {
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	color: white;
	background-color: black;
	padding-top: 2.5rem;
	padding-bottom: 4rem;
	grid-column: 1/-1;
	position: relative;
}
@media screen and (min-width: 64em) {
	.slider__text {
		column-gap: 1rem;
	}
}
@media screen and (min-width: 40em) {
	.slider__text {
		grid-template-columns: minmax(1.5rem, 1fr) repeat(4, minmax(1rem, 7.8125rem));
		grid-column: 1/6;
		grid-row: 1;
		column-gap: 1rem;
		z-index: 10;
		padding-top: 4.875rem;
		padding-bottom: 6.25rem;
	}
}
@media screen and (min-width: 64em) {
	.slider__text {
		padding-top: 8.125rem;
		padding-bottom: 9.5rem;
	}
}
@media screen and (min-width: 40em) {
	.slider__text::after {
		width: 3.9375rem;
		height: 1.8125rem;
		right: 0;
		top: 50%;
		transform: translate(1.96875rem, -50%);
		z-index: 10;
		content: '';
		background-image: url('../assets/desktop/bg-pattern-wavy-white.svg');
		background-size: cover;
		position: absolute;
	}
}
@media screen and (min-width: 64em) {
	.slider__text::after {
		width: 8.4375rem;
		height: 3.8125rem;
		transform: translate(4.21875rem, -50%);
	}
}
.slider__text .slide__headline {
	grid-row: 1;
	grid-column: 2/-1;
	visibility: hidden;
	transition: transform 500ms ease;
	animation-duration: 500ms;
}
.slider__text .enabled {
	visibility: visible;
}
.slider__text .slide__buttons {
	grid-row: 2;
	grid-column: 2/-1;
}
.slider__text .button--arrow {
	margin-right: 1rem;
	text-decoration: none;
	display: inline-block;
}

.footer {
	display: grid;
	grid-template-columns: minmax(1.5rem, 1fr) repeat(8, minmax(1rem, 7.8125rem)) minmax(1.5rem, 1fr);
	width: 100%;
	padding: 4.875rem 0 6.25rem;
	position: relative;
}
@media screen and (min-width: 64em) {
	.footer {
		column-gap: 1rem;
	}
}
@media screen and (min-width: 40em) {
	.footer {
		align-items: center;
		justify-content: center;
	}
}
.footer h2 {
	margin-bottom: 2.875rem;
	grid-column: 2/9;
}
@media screen and (min-width: 40em) {
	.footer h2 {
		grid-column: 2/7;
	}
}
.footer .button--primary {
	font-size: 1rem;
	grid-column: 2/8;
	justify-self: flex-start;
	grid-row: 2;
}
@media screen and (min-width: 40em) {
	.footer .button--primary {
		grid-column: 7/10;
		grid-row: 1;
		justify-self: end;
	}
}
@media screen and (min-width: 64em) {
	.footer::before {
		content: '';
		width: 8.4375rem;
		height: 3.8125rem;
		left: 0;
		top: 50%;
		transform: translate(-4.21875rem, -50%);
		z-index: -1;
		background-image: url('../assets/desktop/bg-pattern-wave-red.svg');
		background-size: cover;
		position: absolute;
	}
}

/*
    HELLO! :)
    I am using use-forward and 7-1 Sass architecture in this project

*/

/* General modal styles */
.modal {
	visibility: hidden; /* Hidden by default */
	opacity: 0; /* Invisible initially */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
	justify-content: center;
	align-items: center;
	display: flex; /* Ensures the modal content is centered */
	z-index: 1000;
	transition: opacity 0.3s ease; /* Smooth fade-in/out transition */
	pointer-events: none; /* Prevents clicks on the background when hidden */
}

/* Modal content styles */
.modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	width: 400px;
	text-align: center;
	position: relative;
	transform: translateY(-50px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When the modal is shown */
.modal.show {
	opacity: 1; /* Fully visible */
	pointer-events: auto; /* Allow interaction with modal */
}

.modal.show .modal-content {
	transform: translateY(0);
	opacity: 1;
}

/* Close button styles */
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 30px;
	color: #000;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.close-btn:hover {
	color: rgb(255, 102, 0);
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 15px; /* Space between input fields */
	margin-top: 20px;

	input,
	textarea {
		padding: 10px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 5px;
		width: 100%;
		box-sizing: border-box;
		outline: none;
		transition: border-color 0.3s ease;

		&:focus {
			border-color: #ff6600;
		}
	}

	textarea {
		resize: vertical;
		height: 100px;
	}
}

.button--primary {
	padding: 12px 20px;
	background-color: #ff6600;
	color: white;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;

	&:hover {
		background-color: #e65c00;
		transform: scale(1.05);
	}

	&:active {
		background-color: #cc5200;
	}
}

/* Toast styling */
.toast {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #eb6434;
	color: white;
	padding: 20px 40px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	z-index: 1100;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Toast visible */
.toast.show {
	opacity: 1;
	visibility: visible;
}

/* Error toast styling */
.toast.error {
	background-color: #ffcccc; /* Light red */
	color: #cc0000; /* Dark red text */
}

.bottom_container {
	height: 20rem;
	background: #000;
	color: white;
	width: 100%;
	padding-inline: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15rem;
}

.bottom_nav {
	display: flex;
	flex-direction: column;
	gap: 2rem;

	> span {
		cursor: pointer;
	}
}

#openModalBtn {
	cursor: pointer;
}

.bottom_description {
	display: flex;
	gap: 0.5rem;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-bottom: 1rem;

	.bottom_logo {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;

		img {
			max-height: 3rem;
			max-width: 30rem;
		}
	}

	span {
		font-size: 0.8rem;
	}
}

@media screen and (max-width: 992px) {
	.bottom_container {
		padding-inline: 1rem;
		height: 15rem;
		gap: 4rem;
	}

	.bottom_logo {
		flex: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.bottom_nav {
		gap: 1rem;
	}
}

.location_container{
	display: flex;
	gap: 0.3rem;
	justify-content: start;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.bottom_logo {
		img {
			display: none;
		}
	}
}

/* Creative agency landing refresh */
:root {
	--ink: #101828;
	--muted: #667085;
	--line: #e6e8ee;
	--brand: #eb6434;
	--brand-dark: #181820;
	--accent: #ff9494;
	--soft: #fff4ef;
	--warm: #fff0e7;
	--gold: #ffb84d;
}

.creative-site {
	color: var(--ink);
	background:
		linear-gradient(180deg, #fff7f1 0, #fff 34rem),
		#fff;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: 1rem;
	z-index: 2000;
	padding: 0.75rem 1rem;
	color: #fff;
	background: var(--brand-dark);
	border-radius: 0.5rem;
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-shell {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(235, 100, 52, 0.16);
}

.brand,
.site-header a,
.bottom_nav a {
	color: inherit;
	text-decoration: none;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 800;
}

.brand img {
	display: block;
	width: 10.5rem;
	max-width: 42vw;
	height: auto;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-header .menu {
	display: block;
	padding: 0;
}

.site-header .hamburger-menu {
	padding: 0.5rem;
}

.site-header .mobile-nav {
	position: absolute;
	top: 4.75rem;
	right: 1.25rem;
	z-index: 20;
	width: min(18rem, calc(100vw - 2.5rem));
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 0.5rem;
	background: #fff;
	box-shadow: 0 1rem 3rem rgba(16, 24, 40, 0.16);
	visibility: hidden;
}

.site-header .mobile-nav nav {
	display: grid;
	gap: 1rem;
	margin-bottom: 1rem;
}

.site-header .mobile-nav a {
	color: var(--ink);
}

.button--primary,
.button--secondary,
.button--ghost,
.bottom_nav button {
	border-radius: 0.5rem;
	font-weight: 800;
	text-decoration: none;
	border: 0;
	cursor: pointer;
}

.button--primary {
	position: relative;
	overflow: hidden;
	background: var(--brand);
	color: #fff;
	padding: 0.95rem 1.25rem;
}

.button--primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
	transform: translateX(-120%);
	animation: cta-shine 3.8s ease-in-out infinite;
}

.button--secondary {
	background: var(--brand-dark);
	color: #fff;
	padding: 0.85rem 1rem;
}

.button--ghost {
	display: inline-flex;
	align-items: center;
	color: var(--brand);
	padding: 0.95rem 0;
}

.button--primary:hover,
.button--secondary:hover {
	background: var(--accent);
	color: #fff;
	transform: none;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
	gap: 3rem;
	align-items: center;
	padding: 5rem 0 4rem;
}

.hero__text::before {
	content: "";
	display: block;
	width: 8.5rem;
	height: 0.35rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(90deg, var(--brand), var(--gold));
}

.hero__text {
	grid-column: auto;
	grid-row: auto;
	padding: 0;
	animation: fade-up 700ms ease-out both;
}

.eyebrow {
	margin: 0 0 0.8rem;
	color: var(--brand);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1,
.section h2,
.footer h2 {
	margin: 0;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 11ch;
	font-size: clamp(2.7rem, 7vw, 5.7rem);
	line-height: 0.96;
}

.hero p {
	max-width: 40rem;
	color: var(--muted);
}

.hero-actions,
.metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
}

.metrics {
	margin-top: 2rem;
}

.metrics span {
	color: var(--muted);
}

.metrics strong {
	display: block;
	color: var(--ink);
	font-size: 1.5rem;
}

.hero-panel {
	overflow: hidden;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 0.5rem;
	background:
		linear-gradient(135deg, rgba(235, 100, 52, 0.35), rgba(255, 184, 77, 0.2) 45%, transparent 70%),
		var(--soft);
	box-shadow: 0 1.25rem 4rem rgba(16, 24, 40, 0.14);
	animation: fade-up 900ms 120ms ease-out both, float-panel 5s ease-in-out infinite;
}

.hero-panel::before {
	content: "";
	display: block;
	height: 12rem;
	margin: -1rem -1rem 1rem;
	background-image: url("../assets/desktop/image-hero.jpg");
	background-position: center;
	background-size: cover;
}

.panel-top,
.role-card {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.45rem;
	background: #fff;
}

.panel-top {
	margin-bottom: 1rem;
	background: var(--brand-dark);
	color: #fff;
}

.role-card + .role-card {
	margin-top: 0.75rem;
}

.role-card span,
.panel-top span {
	color: var(--muted);
}

.panel-top span {
	color: #d0d5dd;
}

.trust-strip,
.section,
.footer {
	border-top: 1px solid var(--line);
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	padding: 1.25rem 0;
	color: var(--brand-dark);
	font-weight: 800;
}

.trust-strip span {
	padding: 0.95rem;
	border-radius: 0.5rem;
	background: var(--warm);
	animation: fade-up 650ms ease-out both;
}

.trust-strip span:nth-child(2),
.cards article:nth-child(2),
.proof-grid article:nth-child(2) {
	animation-delay: 100ms;
}

.trust-strip span:nth-child(3),
.cards article:nth-child(3),
.proof-grid article:nth-child(3) {
	animation-delay: 200ms;
}

.trust-strip span:nth-child(4),
.cards article:nth-child(4) {
	animation-delay: 300ms;
}

.section {
	padding: 4.5rem 0;
}

.section-heading {
	max-width: 45rem;
	margin-bottom: 2rem;
}

.section h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.05;
}

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

.cards article,
.proof-grid article,
.faq details,
blockquote {
	border: 1px solid var(--line);
	border-radius: 0.5rem;
	background: #fff;
}

.cards article {
	padding: 1.4rem;
	border-top: 0.35rem solid var(--brand);
	box-shadow: 0 0.75rem 2rem rgba(235, 100, 52, 0.08);
	animation: fade-up 700ms ease-out both;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cards article:hover {
	transform: translateY(-0.45rem);
	border-color: var(--gold);
	box-shadow: 0 1rem 2.5rem rgba(235, 100, 52, 0.18);
}

.cards h3 {
	margin: 0;
	font-size: 1.1rem;
}

.cards p,
.split p,
.faq p,
blockquote {
	color: var(--muted);
}

.split {
	display: grid;
	grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
	position: relative;
}

.split > div {
	position: sticky;
	top: 2rem;
}

.split > div p:last-child {
	max-width: 32rem;
}

.steps {
	position: relative;
	display: grid;
	gap: 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}

.steps::before {
	content: none;
}

.steps li {
	position: relative;
	display: grid;
	grid-template-columns: 4.25rem minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	min-height: 8rem;
	padding: 1.4rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(235, 100, 52, 0.18);
	background:
		linear-gradient(135deg, rgba(255, 240, 231, 0.98), #fff 62%),
		#fff;
	box-shadow: 0 0.8rem 2rem rgba(24, 24, 32, 0.07);
	animation: slide-in 650ms ease-out both;
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.steps li::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 0.35rem;
	background: linear-gradient(var(--brand), var(--gold));
}

.steps li:hover {
	transform: translateY(-0.3rem);
	border-color: var(--brand);
	box-shadow: 0 1rem 2.4rem rgba(235, 100, 52, 0.16);
}

.steps li:nth-child(2) {
	animation-delay: 100ms;
}

.steps li:nth-child(3) {
	animation-delay: 200ms;
}

.steps li:nth-child(4) {
	animation-delay: 300ms;
}

.steps li::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	display: grid;
	place-items: center;
	width: 4.25rem;
	height: 4.25rem;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--brand), var(--gold));
	box-shadow: 0 0.75rem 1.5rem rgba(235, 100, 52, 0.28);
	font-weight: 800;
	font-size: 1.1rem;
	z-index: 1;
}

.step-copy {
	min-width: 0;
}

.steps strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--brand-dark);
	font-size: 1.25rem;
	line-height: 1.2;
}

.steps span {
	display: block;
	color: var(--muted);
	line-height: 1.6;
}

.steps em {
	justify-self: end;
	padding: 0.55rem 0.75rem;
	border-radius: 999px;
	color: var(--brand-dark);
	background: var(--warm);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 800;
	white-space: nowrap;
}

.proof {
	background:
		linear-gradient(135deg, rgba(235, 100, 52, 0.95), rgba(24, 24, 32, 0.98) 55%),
		var(--brand-dark);
	color: #fff;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
}

.proof .eyebrow,
.proof-grid strong {
	color: var(--gold);
}

.proof .section-heading h2,
.proof cite {
	color: #fff;
}

.proof-grid article {
	padding: 1.5rem;
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	animation: fade-up 700ms ease-out both;
}

.proof-grid strong {
	display: block;
	font-size: 2.25rem;
}

blockquote {
	margin: 1rem 0 0;
	padding: 1.5rem;
	font-size: 1.25rem;
	line-height: 1.6;
	animation: fade-up 800ms 150ms ease-out both;
}

cite {
	display: block;
	margin-top: 1rem;
	color: var(--ink);
	font-style: normal;
	font-weight: 800;
}

.faq details {
	padding: 1.2rem 1.4rem;
	border-left: 0.35rem solid var(--brand);
	transition: background-color 200ms ease, transform 200ms ease;
}

.faq details:hover,
.faq details[open] {
	background: var(--warm);
	transform: translateX(0.25rem);
}

.faq details p {
	animation: fade-up 250ms ease-out both;
}

.faq details + details {
	margin-top: 0.75rem;
}

.faq summary {
	cursor: pointer;
	font-weight: 800;
}

.footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 2rem;
	width: 100vw;
	padding: 3rem 0;
	background: var(--soft);
	margin-inline: calc(50% - 50vw);
	padding-inline: max(1.25rem, calc((100vw - 1180px) / 2));
}

.footer > div {
	min-width: 0;
}

.footer h2,
.footer .button--primary {
	grid-column: auto;
	grid-row: auto;
	justify-self: auto;
}

.bottom_container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 2rem max(1.25rem, calc((100vw - 1180px) / 2));
	gap: 2rem;
	background: var(--brand-dark);
}

.bottom_description,
.bottom_nav {
	height: auto;
	padding: 0;
	min-width: 0;
}

.bottom_nav {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	flex-wrap: wrap;
}

.bottom_nav button {
	color: #fff;
	background: transparent;
	padding: 0;
}

.modal {
	background: rgba(16, 24, 40, 0.6);
}

.modal.show {
	visibility: visible;
	opacity: 1;
}

.modal-content {
	width: min(31rem, calc(100vw - 2rem));
	border-radius: 0.5rem;
	text-align: left;
}

.modal-content p {
	margin-bottom: 1rem;
	color: var(--muted);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
	width: 100%;
	padding: 0.85rem;
	border: 1px solid var(--line);
	border-radius: 0.45rem;
	font: inherit;
}

.modal-form label {
	color: var(--brand-dark);
	font-weight: 800;
	text-align: left;
}

.modal-form textarea {
	min-height: 7rem;
	resize: vertical;
}

.toast {
	background: var(--brand);
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(1.25rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slide-in {
	from {
		opacity: 0;
		transform: translateX(1.25rem);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float-panel {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-0.7rem);
	}
}

@keyframes cta-shine {
	0%,
	55% {
		transform: translateX(-120%);
	}
	100% {
		transform: translateX(120%);
	}
}

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

@media screen and (max-width: 62rem) {
	.hero,
	.split,
	.cards,
	.proof-grid,
	.trust-strip {
		grid-template-columns: 1fr 1fr;
	}

	.hero__text {
		grid-column: 1 / -1;
	}
}

@media screen and (max-width: 40rem) {
	.desktop-nav {
		display: none;
	}

	.hero,
	.split,
	.cards,
	.proof-grid,
	.trust-strip {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 2.5rem;
	}

	.hero h1 {
		max-width: none;
		font-size: 3rem;
	}

	.footer,
	.bottom_container,
	.bottom_nav {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media screen and (max-width: 48rem) {
	.site-shell {
		padding-inline: 1rem;
	}

	.site-header {
		position: relative;
		padding-block: 1rem;
	}

	.brand img {
		width: 9rem;
		max-width: 68vw;
	}

	.hero {
		gap: 1.75rem;
		padding: 2.25rem 0 3rem;
	}

	.hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.5rem);
		line-height: 1;
	}

	.hero p,
	.cards p,
	.split p,
	.faq p {
		font-size: 1rem;
		line-height: 1.65;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button--primary,
	.hero-actions .button--ghost,
	.footer .button--primary,
	.mobile-nav .button--primary,
	.modal-form .button--primary {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

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

	.metrics span {
		padding: 0.75rem;
		border-radius: 0.5rem;
		background: #fff;
		box-shadow: 0 0.5rem 1.5rem rgba(235, 100, 52, 0.08);
	}

	.metrics strong {
		font-size: 1.25rem;
	}

	.hero-panel::before {
		height: 10rem;
		background-image: url("../assets/mobile/image-hero.jpg");
	}

	.panel-top,
	.role-card {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.trust-strip {
		gap: 0.75rem;
	}

	.section {
		padding: 3.25rem 0;
	}

	.section-heading {
		margin-bottom: 1.4rem;
	}

	.section h2,
	.footer h2 {
		font-size: clamp(2rem, 10vw, 2.75rem);
		line-height: 1.08;
	}

	.cards,
	.proof-grid,
	.steps {
		gap: 0.85rem;
	}

	.cards article,
	.proof-grid article,
	.faq details,
	blockquote {
		border-radius: 0.45rem;
	}

	.steps li {
		grid-template-columns: 3.25rem minmax(0, 1fr);
		min-height: auto;
		padding: 1rem 1rem 1rem 1.15rem;
		animation-name: fade-up;
	}

	.steps::before {
		content: none;
	}

	.steps li::before {
		width: 3.25rem;
		height: 3.25rem;
		font-size: 0.95rem;
	}

	.steps li::after {
		width: 0.25rem;
	}

	.steps em {
		grid-column: 2;
		justify-self: start;
	}

	.faq details:hover,
	.faq details[open] {
		transform: none;
	}

	blockquote {
		font-size: 1.05rem;
		padding: 1.1rem;
	}

	.footer {
		gap: 1.25rem;
		padding-block: 2.5rem;
		grid-template-columns: 1fr;
	}

	.footer h2 {
		max-width: 100%;
	}

	.bottom_container {
		grid-template-columns: 1fr;
		padding: 2rem 1rem;
	}

	.bottom_description {
		width: 100%;
		gap: 0.65rem;
	}

	.bottom_description span,
	.bottom_description strong {
		overflow-wrap: anywhere;
	}

	.bottom_nav {
		width: 100%;
		gap: 0.9rem;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bottom_nav a,
	.bottom_nav button {
		width: 100%;
		padding: 0.85rem;
		border-radius: 0.5rem;
		background: rgba(255, 255, 255, 0.08);
		text-align: center;
	}

	.modal {
		align-items: flex-start;
		padding: 1rem;
		overflow-y: auto;
	}

	.modal-content {
		width: 100%;
		max-height: calc(100vh - 2rem);
		overflow-y: auto;
		padding: 1.25rem;
	}

	.close-btn {
		top: 0.5rem;
		right: 0.75rem;
	}

	.toast {
		width: calc(100vw - 2rem);
		padding: 1rem;
		font-size: 1rem;
	}
}

@media screen and (max-width: 30rem) {
	.site-shell {
		padding-inline: 0.85rem;
	}

	.brand img {
		width: 7.75rem;
	}

	.site-header .mobile-nav {
		right: 0;
		width: calc(100vw - 1.7rem);
	}

	.hero h1 {
		font-size: 2.35rem;
	}

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

	.hero-panel,
	.cards article,
	.proof-grid article,
	.faq details {
		padding: 0.9rem;
	}

	.steps li {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 1.1rem;
	}

	.steps::before {
		display: none;
	}

	.steps li::before {
		width: 3rem;
		height: 3rem;
	}

	.steps em {
		grid-column: auto;
		justify-self: start;
	}

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