/* ==========================================================================
   Frost Hub — Main Stylesheet
   Colors: Dark Blue #1B2A4A, Steel Blue #6A9AB5, Orange #E8762A, White #FFF
   Font: Nunito Sans
   ========================================================================== */

/* --- Variables --- */
:root {
	--font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-accent: 'Stack Sans Notch', sans-serif;
	--black: #000;
	--white: #fff;
	--gray: #688197;
	--blue: #A0D9F7;
	--blue_1: #93CCEA;
	--blue_2: #00A3E0;
	--blue_3: #0F3052;
	--orange: #ED6B21;
	--orange_2: #ED5121;
}

/* --- Reset --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--black);
	background-color: var(--white);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

ul,
ol {
	list-style: none;
}


/* --- Container --- */
.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 80px);
}

.container--narrow {
	max-width: 800px;
}

/* --- Section --- */
.section {
	padding: 80px 0;
}

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}


.btn--primary {
	background-color: #1B2A4A;
	color: #fff;
}

.btn--primary:hover {
	background-color: #2a3d66;
}

.btn--cta {
	background-color: var(--orange, #ED6B21);
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	line-height: 37px;
	padding: 15px 44px;
}

.btn--cta:hover {
	background-color: var(--orange_2, #ED5121);
}

.btn--header {
	background-color: var(--blue_3);
	color: #fff;
	padding: 16px 50px;
	font-size: 19px;
	font-weight: 900;
	line-height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	transition: 0.3s;
}

.btn--header:hover {
	background-color: var(--orange);
	transition: 0.3s;
	transform: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - clamp(40px, 10vw, 160px));
	max-width: 1440px;
	z-index: 100;
	background-color: #fff;
	padding: 0 0 0 32px;
	transition: top 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.site-header.is-scrolled {
	top: 10px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

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

/* Logo / Brand */
.site-header__brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-header__brand-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #1B2A4A;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 800;
	border-radius: 4px;
}

.site-header__brand-text {
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #1B2A4A;
}

.site-header__logo .custom-logo-link {
	display: flex;
	align-items: center;
}

.site-header__logo .custom-logo-link img {
	max-height: 48px;
	width: auto;
}

/* Nav */
.site-header__nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-nav li a {
	font-size: 19px;
	font-weight: 400;
	position: relative;
	color: var(--blue_3);
}

.site-nav li a:hover {
	text-shadow: 0.3px 0 0 currentColor, -0.3px 0 0 currentColor;
}

/* Header actions: lang + CTA */
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Language Switcher */
.frost-lang-switcher {
	display: flex;
	align-items: center;
	gap: 4px;
}

.frost-lang-switcher li a {
	font-size: 0.85rem;
	font-weight: 700;
	padding: 4px 8px;
	color: #1B2A4A;
	transition: color 0.3s ease;
}

.frost-lang-switcher li a:hover,
.frost-lang-switcher li.active a {
	color: #E8762A;
}

/* Burger */
.site-header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	width: 30px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 101;
}
 
.site-header__burger span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--blue_3);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__burger.is-active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-header__burger.is-active span:nth-child(2) {
	opacity: 0;
}

.site-header__burger.is-active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.section--hero {
	position: relative;
	min-height: 96vh;
	overflow: hidden;
	padding: 0;
	display: flex;
	align-items: stretch;
}

.section--hero::before,
.section--hero::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 3;
	background-size: 100% auto;
	background-repeat: no-repeat;
	pointer-events: none;
}

.section--hero::before {
	top: 0;
	background-image: var(--hero-top);
	background-position: top left;
	aspect-ratio: 2160 / 561;
}

.section--hero::after {
	bottom: 0;
	background-image: var(--hero-bottom);
	background-position: bottom left;
	aspect-ratio: 2160 / 495;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero__bg img {
	width: 100%;
	height: 100%;
}

/* Hero container */
.hero__container {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
	padding-top: 148px;
	padding-bottom: 40px;
}

/* Subtitle box — top right */
.hero__subtitle-box {
	align-self: flex-end;
	max-width: 675px;
}

.hero__subtitle-box p {
	font-size: 25px;
	line-height: normal;
	color: #fff;
	text-align: right;
	font-weight: 500;
}

/* CTA block — center right */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
    margin-top: 100px;
}

.hero__title-line1 {
	font-size: 29px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  padding: 8px;
  line-height: 38px;
  background: var(--blue_3);
  margin-bottom: -9px;
  transform: rotate(-1.81deg);
}

.hero__title-line2 {
	font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 27px 12px 15px;
  line-height: 44px;
  background: var(--gray);
  display: inline-block;
}

.hero__cta .btn--cta {
	margin-top: 54px;
	position: relative;
}


.hero__cta .btn--cta::before {
	content: '';
	position: absolute;
	left: -93px;
  bottom: 33px;
	width: 62px;
	height: 62px;
	background: url('../images/svg/a_45.svg') no-repeat center / contain;
}

/* Description — bottom left */
.hero__description {
	align-self: flex-start;
	max-width: 300px;
}

.hero__description p {
	font-size: 15px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}

/* ==========================================================================
   Post Card
   ========================================================================== */

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

.post-card {
	border-radius: 12px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-card__image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.post-card__content {
	padding: 24px;
}

.post-card__title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.post-card__excerpt {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 16px;
}

.post-card__link {
	font-weight: 600;
	color: #E8762A;
}

/* ==========================================================================
   Single Post / Page
   ========================================================================== */

.post-title,
.page-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	margin-bottom: 16px;
}

.post-meta {
	color: #888;
	font-size: 0.9rem;
	margin-bottom: 24px;
}

.post-thumbnail {
	margin-bottom: 32px;
	border-radius: 12px;
	overflow: hidden;
}

.post-content {
	font-size: 1.05rem;
	line-height: 1.75;
}

.post-content h2,
.post-content h3 {
	margin-top: 40px;
	margin-bottom: 16px;
}

.post-content p {
	margin-bottom: 20px;
}

.post-content img {
	border-radius: 8px;
	margin: 24px 0;
}

/* ==========================================================================
   404
   ========================================================================== */

.section--404 {
	text-align: center;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.section--404 h1 {
	font-size: 6rem;
	font-weight: 900;
	color: #1B2A4A;
}

.section--404 p {
	font-size: 1.2rem;
	margin: 16px 0 32px;
	color: #666;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: var(--blue_3, #0F3052);
	color: #fff;
	padding: 0;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr 1fr;
	gap: 32px;
	padding: 48px 0;
}

/* Logo block */
.site-footer__info {
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__brand-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	color: var(--blue_3, #0F3052);
	font-size: 1.2rem;
	font-weight: 800;
	border-radius: 4px;
}

.site-footer__brand-text {
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__info .custom-logo-link img {
	max-height: 40px;
	width: auto;
}

.site-footer__desc {
	font-size: 12px;
	line-height:  normal;
	font-weight: 500;
	color: #fff;
	max-width: 157px;
}

/* Footer columns */
.site-footer__col {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.site-footer__title {
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	line-height: normal;
}

/* Footer nav */
.footer-nav {
	display: flex;
	flex-direction: column;
}
li {
	  line-height: normal;
}

.footer-nav li a {
	font-size: 12px;
	color: #fff;
	position: relative;
	font-weight: 500;
	line-height: normal;
}

.footer-nav li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s ease;
}

.footer-nav li a:hover::after {
	width: 100%;
}

/* Contact info */
.site-footer__contact {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

.site-footer__contact a {
	color: #fff;
	position: relative;
	padding-bottom: 2px;
}

.site-footer__contact a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s ease;
}

.site-footer__contact a:hover::after {
	width: 100%;
}

.site-footer__icon {
	flex-shrink: 0;
	color: var(--orange, #ED6B21);
	margin-top: 2px;
}

/* Social links */
.site-footer__social {
	display: flex;
	gap: 9px;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background-color: var(--blue_3, #0F3052);
	color: #fff;
	transition: opacity 0.3s ease;
}

.site-footer__social-link:hover {
	opacity: 0.7;
}


/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	padding: 8px 14px;
	border-radius: 6px;
	font-weight: 600;
	background-color: #f0f0f5;
}

.pagination .page-numbers.current {
	background-color: #1B2A4A;
	color: #fff;
}

/* ==========================================================================
   Icons Section
   ========================================================================== */

.section--icons {
	background-color: var(--blue_3);
	padding: 53px 0 60px;
}

.icons-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 54px;
}

.icons-grid__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 23px;
}

.icons-grid__item img {
  width: auto;
  height: 41px;
}

.icons-grid__item p {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	line-height: normal;
	margin: 0;
}

/* ==========================================================================
   About (sticky cards)
   ========================================================================== */

.section--about {
	padding: 0;
}

.about {
	display: flex;
	position: relative;
}

.about__left {
	width: 50%;
	max-height: 674px;
	flex-shrink: 0;
}

.about__slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.about__slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.about__slide {
	min-width: 100%;
	height: 100%;
}

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

.about__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 2;
}

.about__arrow--prev {
	left: 16px;
}

.about__arrow--next {
	right: 16px;
}

.about__label {
	position: absolute;
  bottom: 32px;
  left: auto;
  z-index: 2;
  right: 10px;
}

.about__label-title {
	display: inline-block;
	font-family: var(--font-accent);
	font-size: 106px;
	font-weight: 700;
	color: #fff;
	line-height: normal;
	padding: 5px 27px;
	background-color: var(--blue_1);
}

.about__label-sub {
	display: block;
  font-size: 25px;
  padding: 4px 20px;
  background-color: var(--blue_3);
  color: #fff;
  margin-top: -24px;
  margin-left: 54px;
  z-index: 3;
  position: relative;
}
.about__arrow img {
  width: 33px;
  height: 33px;
}

/* Right: stacking cards */
.about__right {
	width: 50%;
}

.about__cards {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.about__card {
	padding: 20px 47px 10px 60px;
	background-color: var(--gray);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom: 1px solid #465868;
}


.about__card:first-child {
	box-shadow: none;
}

.about__card:last-child {
	margin-bottom: 0;
	border-bottom:none
}

.about__card-title {
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 35px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.about__card p {
	font-size: 20px;
	line-height: normal;
	font-weight: 500;
	color: var(--white);
	margin: 0;
	max-width: 94%;
}

.about__territory {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.about__territory-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	line-height: normal;
	font-weight: 500;
	color: var(--white);
}

/* ==========================================================================
   Location
   ========================================================================== */

.section--location {
	position: relative;
	padding: 60px 0 327px;
	overflow: hidden;
}

.section--location::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--location-bg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto;
	z-index: 0;
}

.section--location::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url('../images/svg/after_pc.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	width: 748px;
  height: 268px;
	z-index: 0;
}

.location__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	max-width: fit-content;
	margin-right: clamp(20px, 5vw, 80px);
	margin-left: auto;
}

.location__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--black);
	line-height: 68px;
	text-transform: uppercase;
	text-align: right;
}

.location__subtitle {
	font-size: 20px;
	color: var(--black);
	text-align: right;
	line-height: normal;
	margin-bottom: 100px;
	font-weight: 500;
}

.location__info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 367px;
}

.location__info p {
	font-size: 20px;
	line-height: normal;
	color: var(--black);
	margin: 0;
}
.location__info p:nth-child(2) {

}

.location__map-mob {
	display: none;
}

.location__info strong {
	font-weight: 800;
}

/* ==========================================================================
   Advantages
   ========================================================================== */

.section--advantages {
	padding: 0 0 80px;
}

.advantages__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--black);
	line-height: 68px;
	text-transform: uppercase;
	margin-bottom: 40px;
}

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

.advantages__item {
	position: relative;
	padding-left: 80px;
}
.advantages__item:first-child .advantages__number {
	left: -1px;
}
.advantages__item:first-child .advantages__heading {
	max-width: 200px;
}

.advantages__number {
	position: absolute;
	  left: -14px;
  top: -1px;
	font-family: var(--font-accent);
	font-size: 215px;
	font-weight: 700;
	line-height: 0.8;
	color: rgba(0, 163, 224, 0.4);
	z-index: 0;
}

.advantages__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.advantages__heading {
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	line-height: 28px;
}

.advantages__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 384px;
}

.advantages__list li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	color: var(--black);
}

.advantages__list li img {
	flex-shrink: 0;
	margin-top: 2px;
}

/* ==========================================================================
   Mission
   ========================================================================== */

.section--mission-text {
	position: relative;
	background-color: var(--blue_3);
	padding: 50px 0 0;
	z-index: 2;
	height: 267px;
}

.section--mission-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: url('../images/svg/top_2.svg') no-repeat bottom / 100% auto;
	aspect-ratio: 2160 / 650;
	z-index: 1;
	pointer-events: none;
	transform: translateY(50%);
}

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

.mission__title {
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	line-height: 35px;
	margin-bottom: 30px;
	max-width: 1100px;
}

.mission__desc {
	font-size: 15px;
	line-height: normal;
	font-weight: 500;
	color: var(--white);
	max-width: 652px;
	position: absolute;
}

.section--mission-photo {
	padding: 0;
}

.mission-photo__img {
	width: 100%;
	max-width: none;
	display: block;
}

.section--mission-features {
	position: relative;
	background-color: var(--blue_3);
	padding: 0 0 70px;
	z-index: 2;
	margin-top: -5%;
}

.section--mission-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: url('../images/svg/bottom_2.svg') no-repeat top / 100% auto;
	aspect-ratio: 2160 / 536;
	z-index: 1;
	pointer-events: none;
	transform: translateY(-50%);
}

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

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

.mission__feature {
	display: flex;
	align-items: center;
	gap: 25px;
}

.mission__feature img {
	width: 67px;
	height: 67px;
}

.mission__feature p {
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	color: var(--white);
	margin: 0;
}

/* ==========================================================================
   Partners
   ========================================================================== */

.section--partners {
	padding: 100px 0 100px;
}

.partners__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--black);
	line-height: 68px;
	text-transform: uppercase;
	margin-bottom: 48px;
}

.partners__grid {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 8px 7px;
}

.partners__card:nth-child(1) { grid-column: 1 / 3; }
.partners__card:nth-child(2) { grid-column: 3 / 5; }
.partners__card:nth-child(3) { grid-column: 5 / 7; }
.partners__card:nth-child(4) { grid-column: 7 / 9; }
.partners__card:nth-child(5) { grid-column: 2 / 4; }
.partners__card:nth-child(6) { grid-column: 4 / 6; }
.partners__card:nth-child(7) { grid-column: 6 / 8; }
.partners__card:nth-child(8) { grid-column: 8 / 10; }

.partners__card {
	perspective: 600px;
	height: 120px;
}

.partners__card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.partners__card:hover .partners__card-inner {
	transform: rotateX(180deg);
}

.partners__card-front,
.partners__card-back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partners__card-front {
	background-color: #fff;
	border: 1px solid rgba(104, 129, 151, 0.2);
	padding: 16px;
}

.partners__card-front img {
	max-width: 80%;
	max-height: 60px;
	object-fit: contain;
}

.partners__card-back {
	background-color: #fff;
	border: 2px solid var(--blue_2);
	transform: rotateX(180deg);
	flex-direction: column;
	gap: 10px;
	padding: 16px;
}

.partners__card-name {
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 500;
	color: var(--black);
	line-height: normal;
}

.partners__card-back p {
	font-size: 15px;
	color: var(--white);
	line-height: normal;
	margin: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.partners__card-back p span {
	width: fit-content;
}
.partners__card-back p  span:first-child {
	background-color: var(--gray);
	padding: 2px 5px;
}
.partners__card-back p  span:nth-child(2) {
	background-color: var(--orange);
  padding: 2px 5px;
  margin: 0 0 0 14px;
  transform: rotate(-4deg);
}

/* ==========================================================================
   Calculator
   ========================================================================== */

.section--calculator {
	padding: 90px 0 110px;
	background-color: var(--white);
}

.calculator__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--blue_3);
	line-height: 68px;
	text-transform: uppercase;
	margin-bottom: 120px;
}

.calculator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.calculator__input-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.calculator__amount-row {
	display: flex;
	align-items: center;
	gap: 22px;
	border-bottom: 2px solid rgba(104, 129, 151, 0.4);
	padding-bottom: 0;
}

.calculator__input-group.is-editing .calculator__amount-row {
	display: none;
}

.calculator__pencil-icon {
	flex-shrink: 0;
	transition: opacity 0.3s ease;
}

.calculator__input-group:hover .calculator__pencil-icon {
	opacity: 0.7;
}

.calculator__amount-value {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	line-height: 60px;
	color: var(--blue_3);
}

.calculator__amount-edit {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.calculator__input-group.is-editing .calculator__amount-edit {
	display: flex;
}

.calculator__amount-input-field {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	border-bottom: 2px solid rgba(104, 129, 151, 0.4);
	padding-bottom: 0;
}

.calculator__amount-input {
	width: 280px;
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	line-height: 1;
	color: var(--blue_3);
	background: transparent;
	border: none;
	padding: 0;
	height: 42px;
	margin: 0;
	text-align: left;
	outline: none;
}

.calculator__amount-label {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 500;
	color: var(--blue_3);
	list-style: normal;
}

.calculator__amount-label--active {
	display: none;
}

.calculator__input-group.is-editing .calculator__amount-label--default {
	display: none;
}

.calculator__input-group.is-editing .calculator__amount-label--active {
	display: block;
}

.calculator__slider-group {
	width: 100%;
	max-width: 1270px;
}

.calculator__range-track {
	position: relative;
	height: 20px;
	display: flex;
	align-items: center;
}

.calculator__range-dots {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	height: 3px;
	background: var(--blue_1);
	pointer-events: none;
	z-index: 0;
}

.calculator__range-dots::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: var(--progress, 5%);
	height: 3px;
	background: var(--blue_3);
	transform: translateY(-50%);
}

.calculator__range-dot {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue_1);
	pointer-events: none;
}

.calculator__range-dot.is-active {
	background: var(--blue_3);
}

.calculator__range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 24px;
	background: transparent;
	outline: none;
	position: relative;
	z-index: 1;
	margin: 0;
}

.calculator__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	background: var(--blue_3);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	z-index: 2;
	margin-top: -7px;
}

.calculator__range::-moz-range-thumb {
	width: 16px;
	height: 16px;
	background: var(--blue_3);
	border: none;
	border-radius: 50%;
	cursor: pointer;
}

.calculator__range::-webkit-slider-runnable-track {
	height: 2px;
	background: transparent;
	cursor: pointer;
}

.calculator__range::-moz-range-track {
	height: 2px;
	background: transparent;
}

.calculator__range-labels {
	display: flex;
	justify-content: space-between;
	font-family: var(--font-primary);
	font-size: 25px;
	font-weight: 700;
	color: var(--blue_3);
	line-height: 28px;
	margin-top: 6px;
}

.calculator__results {
	display: flex;
	gap: 76px;
	width: 100%;
	max-width: 1270px;
	margin-top: 16px;
	justify-content: center;
}

.calculator__result-card {
	background: url('../images/svg/new_btn.svg') no-repeat center center;
	background-size: 100% 100%;
	padding: 12px 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0px;
}

.calculator__result-value {
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: 800;
	color: var(--blue_3);
	line-height: 30px;
	white-space: nowrap;
}

.calculator__result-label {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	color: var(--blue_3);
	text-align: center;
}

.calculator__cta {
	font-family: var(--font-primary);
	font-size: 27px;
	font-weight: 800;
	color: var(--white);
	padding: 13px 20px;
	background-color: var(--blue_3);
	border: none;
	border-radius: 0px;
	max-width: 358px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	text-align: center;
	line-height: 38px;
	position: relative;
	transition: 0.3s;
}
.calculator__cta:hover {
	background-color: #000;
	transition: 0.3s;
}

.calculator__cta::before {
	content: '';
	position: absolute;
	right: -91px;
	top: 50%;
	transform: translateY(-50%);
	width: 63px;
	height: 63px;
	background: url('../images/svg/calcul_btn.svg') no-repeat center / contain;
}

/* ==========================================================================
   Earnings
   ========================================================================== */

.section--earnings {
	padding: 80px 0;
	background-image: url('/wp-content/uploads/2026/03/bbg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.section--earnings::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(15, 48, 82, 0.37);
}

.section--earnings .container {
	position: relative;
	z-index: 1;
}

.earnings__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--white);
	line-height: 68px;
	text-transform: uppercase;
	margin-bottom: 80px;
}

.earnings__grid {
	display: flex;
	gap: 20px;
}

.earnings__card {
	background: var(--white);
	padding: 27px 35px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 auto;
	min-width: 265px;
}
.earnings__card:first-child {
	min-width: 290px;
}
.earnings__card:first-child .earnings__card-text{
  max-width: 170px;
}
.earnings__card:nth-child(2) .earnings__card-text{
  max-width: 130px;
}

.earnings__card-title {
	font-family: var(--font-primary);
	font-size: 17px;
	font-weight: 700;
	color: var(--blue_3);
	white-space: nowrap;
}

.earnings__card-text {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 500;
	color: var(--blue_3);
	line-height: normal;
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.section--timeline {
	padding: 26px 0;
	background-color: var(--blue_1);
}

.timeline__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--blue_3);
	line-height: 68px;
	text-transform: uppercase;
}

.timeline__subtitle {
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	color: var(--blue_3);
	margin-bottom: 20px;
}

.timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 100px;
	padding-top: 40px;
}

.timeline__line {
	position: absolute;
	left: 50%;
	top: 57px;
	bottom: 17px;
	width: 5px;
	background: var(--white);
	transform: translateX(-50%);
	z-index: 0;
	overflow: hidden;
}

.timeline__line-fill {
	width: 100%;
	height: 0;
	background: var(--blue_3);
}

.timeline__dot--start,
.timeline__dot--end {
	align-self: center;
}

.timeline__dot--start + .timeline__item {
	margin-top: -40px;
}

.timeline__dot--end {
	margin-top: -40px;
}

.timeline__item {
	display: grid;
	grid-template-columns: 1fr 24px 1fr;
	gap: 32px;
	align-items: center;
	position: relative;
	width: 100%;
}

.timeline__left {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.timeline__item-title {
	font-family: var(--font-primary);
	font-size: 42px;
	font-weight: 800;
	color: var(--blue_3);
	text-transform: uppercase;
	line-height: 48px;
	max-width: 500px;
}

.timeline__date {
	font-family: var(--font-primary);
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--orange);
  padding: 7px 8px;
  display: inline-block;
  margin-top: 11px;
}

.timeline__dot {
	  width: 29px;
  border: 5px solid var(--blue_1);
  height: 29px;
  border-radius: 50%;
  background: var(--white);
	flex-shrink: 0;
	z-index: 1;
	justify-self: center;
	transition: background-color 0.3s ease;
}
section.section.section--fill {
  padding: 0;
  overflow: hidden;
}

.fill__image {
	width: 100%;
	max-width: none;
	height: auto;
	display: block;
}

.fill__image--mob {
	display: none;
}



.timeline__dot.is-filled {
	background: var(--blue_3);
}

.timeline__right {
	text-align: left;
}

.timeline__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.timeline__list li {
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 500;
	color: var(--blue_3);
	line-height: 26px;
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.timeline__list li img {
	flex-shrink: 0;
	margin-top: 3px;
	width: 20px;
}


/* ==========================================================================
   Comparison
   ========================================================================== */

.section--comparison {
	background-color: var(--blue_2);
	padding: 40px 0 80px;
	overflow: visible;
}

.comparison__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
}

.comparison__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--white);
	text-transform: uppercase;
}

.comparison__icon {
	width: 412px;
	height: auto;
	flex-shrink: 0;
}

.comparison__slider {
	position: relative;
}

.comparison__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.comparison__card {
	background-color: transparent;
	padding: 21px 18px 58px 43px;
	transition: background-color 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.comparison__card--active {
	background-color: #CDEEFF;
}

.comparison__card-top {
	display: none;
}

.comparison__card-title {
	font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 34px;
  line-height: 35px;
	transition: color 0.3s ease;
	display: none;
}

.comparison__card-title--desktop {
	display: block;
}

.comparison__card--active .comparison__card-title {
	color: var(--blue_3);
}

.comparison__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.comparison__list li {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	font-family: var(--font-primary);
	font-size: 17px;
  font-weight: 500;
  line-height: 19px;
	color: var(--white);
	transition: color 0.3s ease;
}

.comparison__card--active .comparison__list li {
	color: var(--blue_3);
}

.comparison__list li img {
	flex-shrink: 0;
	margin-top: 2px;
	transition: filter 0.3s ease;
}

.comparison__card--active .comparison__list li img {
	filter: brightness(0) saturate(100%) invert(14%) sepia(30%) saturate(2000%) hue-rotate(180deg) brightness(90%) contrast(95%);
}

.comparison__btn {
	display: none;
	font-family: var(--font-primary);
	font-size: 21px;
	font-weight: 800;
	line-height: 16px;
	color: var(--white);
	background-color: var(--orange);
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	padding: 22px 21px;
	border: none;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	white-space: nowrap;
	z-index: 2;
	transition: background-color 0.3s ease;
}

.comparison__btn:hover {
	background-color: var(--orange_2);
}

.comparison__card--active .comparison__btn {
	display: block;
}

.comparison__nav {
	display: none;
}

.comparison__arrow {
	display: none;
}

.comparison__dots {
	display: none;
}

.comparison__photos {
	display: none;
}

.comparison__photo-prev,
.comparison__photo-next {
	display: none;
}




/* ==========================================================================
   Founder
   ========================================================================== */

.section--founder {
	background-color: var(--blue_1);
	padding:0;
}

.founder {
	display: flex;
	gap: 0;
	background-color: var(--blue_1);
	overflow: hidden;
}

.founder__photo {
	width: 40%;
	flex-shrink: 0;
}

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

.founder__content {
	flex: 1;
	padding: 0 0 0 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.founder__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 45px 150px 0 0; 
}
.founder__name-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder__name {
	font-family: var(--font-primary);
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  color: #fff;
  background-color: var(--blue_2);
  padding: 8px 20px;
  display: inline-block;
  margin-top: 20px;
}

.founder__role {
	display: inline-block;
  font-size: 25px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  background-color: var(--blue_3);
  padding: 2px 7px;
  margin-left: 25px;
}

.founder__bio {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 740px;
}

.founder__bio p {
	font-size:20px;
	line-height: normal;
	color: #000;
	font-weight: 500;
	margin: 0;
}

.founder__footer {
	display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(20px, 5vw, 80px) 14px 0px;
    margin-top: auto;
}

.founder__social {
	display: flex;
	gap: 24px;
}

.founder__social-link {
	display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue_2);
  transition: opacity 0.3s ease;
  border-radius: 5px;
  width: 60px;
  height: 60px;
}
.founder__social-link img {
	width: 36px;
	height: 36px;
}

.founder__social-link:hover {
	background-color: var(--gray);
}

.founder__cta {
	font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  padding: 13px 45px;
  background-color: var(--blue_3);
  border: none;
  border-radius: 5px;
  line-height: 37px;
  text-transform: uppercase;
  margin-left: auto;
  transition: background-color 0.3s ease;
}

.founder__cta:hover {
	background-color: #000000;
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.section--marquee {
	padding: 0;
	overflow: hidden;
	background-color: #fff;
}

.marquee {
	overflow: hidden;
	white-space: nowrap;
	padding: 14px 0;
}

.marquee__track {
	display: inline-flex;
	animation: marquee-scroll 25s linear infinite;
}

.marquee__text {
	font-family: var(--font-primary);
	font-size: 49px;
	font-weight: 800;
	color: var(--blue_3);
	text-transform: uppercase;
	letter-spacing: 2px;
	flex-shrink: 0;
	line-height: normal;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-right: 16px;
}

@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ==========================================================================
   Mobile Menu Popup
   ========================================================================== */

.mobile-menu {
	display: none;
}


/* ==========================================================================
   Responsive
   ========================================================================== */



/* --- FAQ --- */
.section--faq {
	padding: 80px 0;
	position: relative;
	background-image: url('../images/svg/faq_btn.svg');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto;
}

.faq {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	grid-template-rows: 1fr;
	gap: 90px;
	align-items: start;
}

.faq__left {
	display: flex;
	flex-direction: column;
	gap: 40px;
	height: 91%;
}

.faq__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--blue_3);
	line-height: 68px;
	text-transform: uppercase;
}

.faq__image {
  max-width: 384px;
  margin-top: auto;
  align-self: flex-end;
}

.faq__right {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.faq__item {
	overflow: hidden;
	background: var(--gray);
}

.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 17px;
	background: var(--gray);
	border: none;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 25px;
	font-weight: 700;
	color: var(--white);
	text-align: left;
	line-height: 28px;
	transition: background 0.3s, padding 0.4s ease;
}

.faq__icon-wrap {
	flex-shrink: 0;
	position: relative;
	width: 35px;
	height: 35px;
	background: var(--blue_3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 19px;
	height: 19px;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.faq__icon--plus {
	opacity: 1;
}

.faq__icon--minus {
	opacity: 0;
}

.faq__item.is-open .faq__icon--plus {
	opacity: 0;
}

.faq__item.is-open .faq__icon--minus {
	opacity: 1;
}

.faq__item.is-open .faq__question {
	padding: 18px 17px 12px;
}

.faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	background: var(--gray);
	transition: grid-template-rows 0.4s ease;
}

.faq__item.is-open .faq__answer {
	grid-template-rows: 1fr;
}

.faq__answer-inner {
	overflow: hidden;
}
.faq__question span {
  max-width: 490px;
}

.faq__answer p {
	padding: 00px 16px 18px;
	font-family: var(--font-primary);
	font-size: 25px;
	font-weight: 500;
	color: var(--white);
	line-height: normal;
	max-width: 605px;
}



/* --- Media --- */
.section--media {
	padding: 80px 0 65px;
	background: var(--blue_3);
	background-image: url('../images/svg/smi_bg.svg');
	background-repeat: no-repeat;
	background-position: right top;
	position: relative;
	overflow: hidden;
}

.media__watermark {
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translateY(-50%);
	font-family: var(--font-primary);
	font-size: 160px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.05);
	white-space: nowrap;
	pointer-events: none;
	line-height: 1;
}

.media__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 60px;
}

.media__title {
	font-family: var(--font-primary);
	font-size: 54px;
	font-weight: 800;
	color: var(--white);
	line-height: 68px;
	text-transform: uppercase;
}

.media__icon {
	flex-shrink: 0;
}

.media__slider .swiper-wrapper {
	align-items: stretch;
}

.media__slider .swiper-slide {
	height: auto;
}

.media__slider {
	overflow: hidden;
}

.media__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--blue_3);
	overflow: hidden;
	background: var(--white);
	transition: transform 0.3s ease;
	height: 100%;
}

.media__card:hover {
	transform: translateY(-4px);
}

.media__card-image {
	width: 100%;
	overflow: hidden;
}

.media__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media__card-logo {
	width: auto;
  align-self: flex-end;
  top: -19px;
  right: 12px;
  z-index: 1;
  position: absolute;
}

.media__card-content {
	display: flex;
  flex-direction: column;
  padding: 26px 16px 30px;
  flex: 1;
  position: relative;
}

.media__card-title {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 800;
	color: var(--black);
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.media__card-text {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 500;
	color: var(--black);
	line-height: normal;
}

.media__nav {
	display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px auto 0;
  max-width: 200px;
}

.media__arrow {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
}


.media__arrow img {
	width: 48px;
	height: 48px;
	max-width: max-content;
}

.media__dots {
	display: flex;
  gap: 11px;
  align-items: center;
  position: static;
  width: auto;
  justify-content: center;
}

.media__dots .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: background 0.3s;
	margin: 0 !important;
	border-radius: 0;
	transform: rotate(45deg);
}

.media__dots .swiper-pagination-bullet-active {
	background: var(--white);
}


/* --- Contact --- */
.section--contact {
	padding: 120px 0 150px;
  background-color: var(--white);
  background-image: url('../images/svg/contact_bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact__title {
	font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 800;
  color: var(--blue_3);
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 70px;
  max-width: 864px;
}

.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact__form {
	max-width: 353px;
}

.contact__form .wpcf7-submit {
	font-size: 25px;
	line-height: 1.3;
	padding: 17px;
	margin-top: 10px;
	width: 100%;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact__label {
	font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 28px;
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit) {
	font-family: var(--font-primary);
  font-size: 15px;
  color: var(--gray);
  padding: 7px 0 3px;
  border: none;
  border-bottom: 1px solid var(--gray);
  background: transparent;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
	color: var(--gray);
}

.contact__form .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-bottom-color: var(--orange);
}


.contact__form .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.contact__form .wpcf7-form > p:last-of-type {
	display: contents;
}

.contact__form .wpcf7-not-valid-tip {
	font-size: 12px;
	color: var(--orange);
	margin-top: 4px;
}

.contact__form .wpcf7-response-output {
	font-size: 14px;
	margin: 8px 0 0;
	padding: 8px 0;
	border: none;
}

.contact__steps {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact__steps-title {
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 700;
	color: var(--black);
	line-height: 28px;
	text-transform: uppercase;
}

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

.contact__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.contact__step-number {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gray);
	font-family: var(--font-primary);
	font-size: 25px;
	font-weight: 700;
	line-height: 28px;
	color: var(--black);
}

.contact__step p {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 500;
	color: var(--black);
	line-height: normal;
}
span.wpcf7-spinner {
	display: none;
}

.phone-float {
	display: none;
}

@media (min-width: 1540px) {
	.section--hero .container {
		padding: 122px 0px 60px;
	}
	.section--location {
		padding-right: 160px;
	}

}

@media (min-width: 769px) {
	.comparison__slider {
		overflow: visible !important;
		padding-bottom: 30px;
	}

}

@media (max-width: 1024px) {
	.comparison__icon {
		width: 250px;
	}

	.comparison__title {
		font-size: 40px;
	}

	.site-nav {
		gap: 16px;
	}

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

	.faq {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.faq__left {
		flex-direction: row;
		align-items: center;
		gap: 24px;
	}

	.faq__image {
		max-width: 200px;
	}

}

@media (max-width: 768px) {
	.calculator {
		gap: 40px;
	}
	.earnings__card:first-child .earnings__card-text{
  max-width: 150px;
}
.earnings__card:nth-child(2) .earnings__card-text{
  max-width: 110px;
}
.earnings__card:nth-child(3) .earnings__card-text{
  max-width: 180px;
}
	.section--mission-features .container {
		padding-top: 30px;
	}
	.mission__feature p {
		font-size: 13px;
	}
	.mission__feature {
		gap: 21px;
	}
	.mission__feature img {
  width: 43px;
  height: 43px;
}
	.section--mission-features {
		margin-top: 0;
	}
	.mission__desc {
		    font-size: 13px;
    max-width: 364px;
	}
	.about__card-title {
		font-size: 15px;
		line-height: 19px;
	}
	.about__card p,
	.about__territory-item {
		font-size: 13px;
	}
	.mission__title {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 24px;
}
	.founder__name {
  font-size: 20px;
  line-height: 28px;
  padding: 6px 16px;
  margin-top: -18px;
}
	.founder__header {
		padding: 0 24px;
	}
	img.founder__logo {
  display: none;
}
.about__territory img {
  width: 16px;
}
	.calculator__range-labels {
		font-size: 12px;
		line-height: 7px;
	}
	.calculator__amount-label {
		font-size: 18px;
	}
	img.calculator__pencil-icon.calculator__pencil-icon--default {
  width: 30px;
  height: 30px;
}
	.section--calculator {
		padding: 80px 0 100px;
	}
	.section--earnings {
		padding: 50px 0 70px;
	}
	.section--fill-2 {
		display: none;
	}

	.section--timeline {
		padding: 70px 0 38px;
	}
	.fill__image--desktop {
		display: none;
	}

	.fill__image--mob {
		display: block;
		width: 100%;
		margin-bottom: -1px;
	}

	.timeline__title {
		font-size: 25px;
		line-height: 25px;
	}
	.timeline__subtitle {
		font-size: 13px;
		margin-bottom: 0;
	}

	.timeline {
		padding-top: 70px;
		gap: 0;
		align-items: flex-start;
	}

	.timeline__line {
		left: 12px;
		top: 170px;
		bottom: 17px;
	}

	.timeline__dot--start {
		display: none;
	}

	.timeline__dot--end {
		display: none;
		margin-top: 0;
	}

	.timeline__dot--start + .timeline__item {
		margin-top: 0;
	}

	.timeline__item {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.timeline__left {
		text-align: left;
		align-items: flex-start;
		background: var(--blue_1);
		position: relative;
		z-index: 1;
		padding: 25px 0 25px;
		width: 100%;
	}

	.timeline__dot {
		width: 8.5px;
		height: 8.5px;
		min-width: 8.5px;
		min-height: 8.5px;
		align-self: flex-start;
		justify-self: unset;
		position: relative;
		z-index: 2;
		border: 1.5px solid var(--blue_1);
		    left: 20px;
	}

	.timeline__line {
		left: 24px;
		width: 1.5px;
		bottom: -16px;
	}

	.timeline__right {
		padding-left: 50px;
		padding-bottom: 8px;
	}

	.timeline__item-title {
		font-size: 20px;
		line-height: 21px;
		max-width: 200px;
    margin-bottom: 2px;
	}
	.timeline__date {
  padding: 2px 3px;
  font-size: 11px;
  line-height: 9px;
  margin: 0 0 25px;
}
.timeline__list li img {
  margin-top: 0px;
  width: 10px;
  height: 10px;
}
.timeline__list li {
	gap: 7px;
	font-size: 15px;
	line-height: normal;
}

	.section--comparison {
		padding: 0;
	}

	.comparison__header {
		flex-direction: column-reverse;
		align-items: center;
		gap: 40px;
	}

	.comparison__icon {
		width: 160px;
    align-self: flex-end;
	}

	.comparison__title {
		font-size: 26px;
    line-height: 25px;
	}

	.comparison__slider {
		overflow: hidden;
		max-width: 100%;
	}

	.comparison__grid {
		display: flex;
		gap: 0;
		align-items: stretch;
	}

	.comparison__grid .swiper-slide {
		height: auto;
	}

	.comparison__card {
		padding: 0 !important;
		background-color: transparent;
		position: static;
		height: 100%;
	}

	.comparison__card:hover,
	.comparison__card--active {
		background-color: transparent;
	}

	.comparison__card:hover .comparison__card-title,
	.comparison__card--active .comparison__card-title {
		color: var(--white);
	}

	.comparison__card:hover .comparison__list li,
	.comparison__card--active .comparison__list li {
		color: var(--white);
	}

	.comparison__card:hover .comparison__list li img,
	.comparison__card--active .comparison__list li img {
		filter: none;
	}

	.comparison__btn {
		display: none;
		position: static;
		transform: none;
		margin: 0 auto;
		font-size: 15px;
		line-height: 19px;
		padding: 16px 20px;
	}

	.comparison__card--active .comparison__btn {
		display: block;
	}

	.comparison__card-top {
		display: block;
		position: relative;
		margin-bottom: 50px;
	}

	.comparison__card-top .comparison__card-title {
		display: block;
	}

	.comparison__card-title--desktop {
		display: none;
	}

	.comparison__photos {
		display: block;
		width: 100%;
		height: 220px;
		overflow: hidden;
	}

	.comparison__photos .swiper-slide img {
		width: 100%;
		height: 220px;
		object-fit: cover;
		display: block;
	}

	.comparison__photo-prev,
	.comparison__photo-next {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 3;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		width: 22px;
		height: 22px;
	}

	.comparison__photo-prev img,
	.comparison__photo-next img {
		width: 22px;
		height: 22px;
	}

	.comparison__photo-prev {
		left: 14px;
	}

	.comparison__photo-next {
		right: 14px;
	}

	.comparison__card-title {
		position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto -30px;
    right: 0;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: var(--white);
    background-image: url('../images/svg/slider_title.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    padding: 7px 28px;
    width: fit-content;
    z-index: 2;
	}

	.comparison__list {
		padding: 0 16px;
		margin-bottom: 30px;
	}

	.comparison__nav {
		display: none;
	}

	.comparison__dots {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 24px;
	}

	.comparison__dot {
		width: 7px;
		height: 7px;
		border-radius: 0;
		transform: rotate(45deg);
		background-color: rgba(255, 255, 255, 0.4);
		border: none;
		padding: 0;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.comparison__dot.is-active {
		background-color: var(--white);
	}
	.section--comparison .comparison__dots {
  margin: 30px 0 60px;
}

	.mobile-menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 99;
		background-color: #fff;
		background-image: url('/wp-content/uploads/2026/03/bg_mm.svg');
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: 100% auto;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
	}

	.mobile-menu.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.mobile-menu__body {
		display: flex;
		flex-direction: column;
		height: 100%;
		padding: 100px 16px 0;
		overflow-y: auto;
	}

	.mobile-nav {
		display: flex;
		flex-direction: column;
		gap: 18px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-nav li a {
		display: block;
		font-family: var(--font-primary);
		font-size: 25px;
		font-weight: 700;
		color: var(--blue_3);
		text-transform: uppercase;
		line-height: normal;
		transition: color 0.2s ease;
	}

	.mobile-menu__social {
		display: flex;
		align-items: center;
		gap: 16px;
		padding-top: 20px;
	}

	.mobile-menu__social-link {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.site-header {
		position: fixed;
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		overflow: hidden;
		z-index: 1000;
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
	}

	.site-header.menu-open {
		box-shadow: 0 2px 6px rgba(128, 122, 113, 0.25);
	}

	.site-header.is-scrolled {
		top: 0;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	}

	.site-header__burger {
		display: flex;
	}

	.site-header__nav,
	.site-header__actions {
		display: none;
	}

	.icons-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px 30px;
	}

	/* About mobile */
	.about {
		flex-direction: column;
	}
	.icons-grid__item {
		gap: 18px;
		text-align: center;
		align-items: center;
	}
	.icons-grid__item p {
		font-size: 12px;
	}
	.icons-grid__item:first-child p,
	.icons-grid__item:nth-child(2) p {
		max-width: 110px;
	}

	.about__left {
		width: 100%;
		position: relative;
		height: 510px;
	}

	.about__right {
		width: 100%;
	}

	.about__right {
		padding-top: 0;
	}

	.about__card {
		position: sticky;
		min-height: auto;
		padding: 26px 32px;
		background-color: var(--gray);
		box-shadow: 0 -3.28px 3.83px rgba(22, 38, 53, 0.4);
	}

	.about__card:nth-child(1) { top: 65px; }
	.about__card:nth-child(2) { top: 140px; }
	.about__card:nth-child(3) { top: 215px; }
	.about__card:nth-child(4) { top: 240px; }

	.about__label {
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		width: max-content;
	}

	.about__label-title {
		font-size: 58px;
		padding: 3px 15px;
		width: fit-content;
	}
	.about__label-sub {
		font-size: 12px;
		padding: 2px 10px;
		margin-left: 60px;
		margin-top: -9px;
		width: fit-content;
	}

	.section--hero {
		min-height: 91vh;
	}

	.section--hero::before,
	.section--hero::after {
		display: none;
	}

	.hero__bg img {
		content: url('/wp-content/uploads/2026/03/mmb.webp');
	}

	.hero__container {
		min-height: 80vh;
		padding-top: 40px;
	}

	.hero__subtitle-box {
		    align-self: end;
    max-width: 91%;
    margin-top: 40px;

	}

	.hero__subtitle-box p {
		font-size: 15px;
	}
	.hero__description p {
		font-size: 13px;
		max-width: 255px;
	}

	.hero__cta {
		align-self: center;
		text-align: center;
	}
	.marquee__text {
		font-size: 30px;
		line-height: normal;

	}
	.marquee {
		padding: 10px 0;
	}

	.hero__title-line1 {
		font-size: 18px;
		line-height: 23px;
		transform: none;
    margin: 0;
	position: relative;
    z-index: 1;
	}

	.hero__title-line2 {
		font-size: 1.5rem;
	}

	.hero__description {
		max-width: 100%;
	}
	.section--icons {
  padding: 100px 0 ;
}
.section--icons .container {
  padding: 0 40px;
}

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

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

	.partners__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.partners__card:nth-child(n) { grid-column: auto; }

	.mission__features {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.section--location {
		padding: 64px 0 134px;
	}

	.section--location::before {
		background-image: url('/wp-content/uploads/2026/03/m_bef.svg');
		background-position: left top;
		background-size: auto;
		width: 89px;
    height: 96px;
	top: 26px;
	}
	.advantages__list {
		max-width: 272px;
	}

	.location__content {
		align-items: flex-start;
		margin: 0 auto;
		max-width: 100%;
	}

	.location__title {
		font-size: 25px;
		line-height: 25px;
		padding-right: 24px;
		margin-bottom: 7px;
		    max-width: 248px;
    text-align: left;
    align-self: flex-end;
	}

	.location__subtitle {
		font-size: 13px;
		padding-right: 24px;
		max-width: 300px;
    align-self: flex-end;
	margin-bottom: 0;
	}

	.location__map-mob {
		display: block;
		width: calc(100% - 24px);
		margin-bottom: 47px;
		margin-top:-25px;
	}

	.location__info {
		max-width: 100%;
	}

	.location__info p {
		font-size: 13px;
		padding: 0 24px;
		max-width: 95%;
	}
	.section--location::after {
		background-image: url('/wp-content/uploads/2026/03/oiu.svg');
		width: 270px;
  height: 104px;
	}

	.section--advantages {
		padding: 28px 0 100px;
	}

	.section--mission-text::after {
		background-image: url('/wp-content/uploads/2026/03/sec.svg');
		bottom: -18%;
	}
	.section--mission-text .container {
		padding-bottom: 30px;
	}

	.section--mission-text {
		padding-top: 38px;
		margin-bottom: 0;
	}

	.partners__title {
		font-size: 25px;
		line-height: 25px;
		margin-bottom: 20px;
	}
	.section--partners {
		padding: 60px 0;
	}
	.advantages__list li {
		font-size: 13px;
		gap: 12px;
	}
	.advantages__number {
		font-size: 170px;
		left: 5px;
	}
	.advantages__item:first-child .advantages__number {
  left: 18px;
}

	.advantages__grid {
		grid-template-columns: 1fr;
	}
	.advantages__heading {
		font-size: 15px;
		line-height: 22px;
	}
	.advantages__body {
		gap: 15px;
	}

	.advantages__title {
		font-size: 25px;
		line-height: 21px;
		margin-bottom: 50px;
	}

	.calculator__title {
		font-size: 25px;
		line-height: 25px;
		max-width: 284px;
		margin-bottom: 57px;
	}

	.calculator__amount-value {
		font-size: 32px;
		line-height: 50px;
	}

	.calculator__amount-input {
		font-size: 32px;
		line-height: 1;
		width: 200px;
	}

	.calculator__results {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px 13px;
		margin-top: 30px;

	}
	.calculator__result-value {
		font-size: 18px;
		line-height: 30px;
	}
	.calculator__result-label {
		font-size: 10px;
	}
	.calculator__result-card {
		padding: 5px 0px;
    background: url('../images/svg/bttn_mob.svg') no-repeat center center;
    background-size: cover;
	}

	.calculator__cta {
		grid-column: 1 / -1;
		width: 100%;
		max-width: 100%;
		font-size: 14px;
		padding: 13px 20px;
		background: var(--blue_3);
		line-height: 15px;
	}
	.calculator__cta::before {
		display: none;
	}

	.earnings__title {
		font-size: 25px;
		line-height: 21px;
		margin-bottom: 65px;
	}
	.earnings__card {
		padding: 16px 40px 20px;
	}
	.earnings__card-text {
		font-size: 13px;
	}

	.earnings__grid {
		flex-direction: column;
	}

	.calculator__range-dot {
		display: none;
	}

	.founder {
		flex-direction: column;
	}

	.founder__photo {
		width: 100%;
	}

	.founder__content {
		padding: 0px;
		gap: 0;
	}
	.founder__bio {
  margin: 33px 0;
  padding: 0 24px;
}
.founder__bio p {
	font-size: 13px;
}
	.founder__role {
  font-size: 15px;
  line-height: 22px;
  padding: 2px 7px;
}

	.founder__footer {
		margin: 0;
		padding: 0 23px 13px;
		gap: 18px;
		justify-content: space-between;
	}
	
	.founder__social-link {
  width: 31px;
  height: 31px;
}
.founder__social {
	gap: 5px;
}
.founder__social-link img {
	width: 19px;
	height: 19px;
}
.founder__cta {
  font-size: 10px;
  padding: 2px 18px;
  margin: 0;
  font-weight: 800;
}

	.faq__answer p {
		font-size: 16px;
	}
	.faq__item.is-open .faq__question {
  padding: 7px 7px 7px 14px;
}
	.section--faq {
		background-image: url('../images/svg/faq_mob.svg');
	}
	.faq__right {
		gap: 23px;
	}
	.site-footer__info img {
  max-width: 101px;
}
	.section--faq {
		padding: 80px 0 60px;
		    margin-bottom: 30px;
	}

	.faq__title {
		font-size: 25px;
		line-height: 25px;
	}
	.faq {
		gap: 23px;
	}

	.faq__left {
		display: contents;
	}

	.faq__title {
		order: 1;
		margin-bottom: 25px;
	}

	.faq__right {
		order: 2;
	}

	.faq__image {
		    display: block;
    order: 3;
    max-width: 214px;
    margin: 0 auto -34px;
	}

	.faq__question {
		font-size: 15px;
		line-height: 18px;
		padding: 7px 7px 7px 14px;
	}
	.faq__icon-wrap {
		width: 32px;
		height: 32px;
	}
	.faq__icon {
		width: 17px;
		height: 17px;
	}
	.contact__form .wpcf7-form-control:not(.wpcf7-submit) {
		font-size: 16px;
		border-radius: 0;
	}

	.section--media {
		background-image: url('../images/svg/media_mob.svg');
	}
	.media__icon {
		max-width: 142px;
		align-self: flex-end;
	}
	.section--media {
		padding: 50px 0 70px;
	}

	.media__title {
		font-size: 25px;
		line-height: 25px;
	}

	.media__header {
		flex-direction: column-reverse;
    gap: 6px;
    margin-bottom: 45px;
	}

	.media__watermark {
		font-size: 80px;
	}

	.contact__form .wpcf7-submit {
		margin-top: 0;
	}
	.contact__form .wpcf7-form {
		gap: 50px;
	}
	.contact__form .wpcf7-form-control:not(.wpcf7-submit) {
		padding: 0 0 3px;
	}
	.contact__label {
		font-size: 15px;
	}
	.section--contact {
		padding: 80px 0;
		background-image: none;
	}

	.contact__title {
		font-size: 25px;
		line-height: 25px;
		margin-bottom: 30px;
	}

	.contact__grid {
		grid-template-columns: 1fr;
		gap: 80px;
	}
	.contact__steps-title {
		font-size: 15px;
	}
	.contact__steps {
		gap: 38px;
	}
	.contact__step-number {
		font-size: 16px;
		width: 26px;
		height: 26px;
	}
	.contact__step {
		gap: 14px;
	}
	.contact__steps-grid {
		gap: 20px;
	}
	.contact__form {
		max-width: 100%;
	}

	.phone-float {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		bottom: 20px;
		right: 20px;
		z-index: 90;
		width: 50px;
		height: 50px;
	}

	.phone-float img {
		width: 100%;
		height: 100%;
	}

	.site-footer__desc {
		max-width: 212px;
	}
	.site-header__inner {
		height: 64px;
	}

	.hero__title-line2 {
		font-size: 26px;
    padding: 10px;
    text-align: left;
    line-height: 29px;
    transform: rotate(-2.23deg);
	}

	.btn--cta {
		font-size: 1rem;
		padding: 14px 28px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 0.9rem;
	}

	.site-footer__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 25px;
	}

	.site-footer__info {
		grid-column: span 2;
		flex-direction: row;
		align-items: center;
		order: 1;
		justify-content: space-between;
		gap: 32px;
	}

	.site-footer__col--address {
		order: 2;
	}

	.site-footer__col--phone {
		order: 3;
	}

	.site-footer__col--about {
		order: 4;
	}

	.site-footer__col--services {
		order: 5;
	}

	.site-footer__col--social {
		order: 6;
		margin-top: -50px;
	}

	.site-footer__col--social .site-footer__title {
		display: none;
	}
	.site-footer__col--about h4.site-footer__title,
	.site-footer__col--services h4.site-footer__title,
	.footer-nav li a {
		font-size: 15px;
	}
	.footer-nav li a {
		font-weight: 500;
	}
	.site-footer__social-link {
		width: 26px;
		height: 26px;
		display: block;
	}
	.site-footer__social {
		gap: 12px;
	}
	.site-footer__social-link img {
		width: 100%;
		height: 100%;
	}
}

/* --- Contact Popup --- */
.contact-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.contact-popup.is-open {
	opacity: 1;
	visibility: visible;
}

.contact-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.contact-popup__dialog {
	position: relative;
	background: var(--white);
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	overflow: hidden;
	transform: translateY(20px);
	transition: transform 0.3s;
}

.contact-popup.is-open .contact-popup__dialog {
	transform: translateY(0);
}

.contact-popup__close {
	position: absolute;
	top: 36px;
	right: 30px;
	z-index: 2;
	width: 23px;
	height: 23px;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
}

.contact-popup__close:hover {
	opacity: 0.6;
}

.contact-popup__close-mobile {
	display: none;
}

.contact-popup__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.contact-popup__left {
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-popup__title {
	font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.contact-popup__form .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.contact-popup__form .wpcf7-form > p:last-of-type {
	display: contents;
}

.contact-popup__form .wpcf7-form-control:not(.wpcf7-submit) {
	font-family: var(--font-primary);
	font-size: 15px;
	color: var(--gray);
	padding: 7px 0 3px;
	border: none;
	border-bottom: 1px solid var(--gray);
	background: transparent;
	outline: none;
	width: 100%;
	transition: border-color 0.3s;
	border-radius: 0;
}

.contact-popup__form .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
	color: var(--gray);
}

.contact-popup__form .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-bottom-color: var(--orange);
}

.contact-popup__form .wpcf7-submit {
	font-size: 19px;
	line-height: 37px;
	font-weight: 900;
	padding: 15px;
	margin-top: 25px;
	width: 100%;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.wpcf7-not-valid {
	border-color: var(--orange) !important;
}

.contact-popup__form .wpcf7-not-valid-tip {
	font-size: 12px;
	color: var(--orange);
	margin-top: 4px;
}

.contact-popup__form .wpcf7-response-output {
	font-size: 14px;
	margin: 8px 0 0;
	padding: 8px 0;
	border: none;
}

.contact-popup__right {
	display: flex;
}

.contact-popup__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.contact-popup__form .wpcf7-form {
		gap: 25px;
	}
	.contact-popup__form .wpcf7-submit {
		margin-top: 20px;
	}
	.contact-popup__title {
		font-size: 15px;
		line-height: 20px;
		margin-bottom: 40px;
		max-width: 253px;
	}
	.contact-popup__body {
		grid-template-columns: 1fr;
	}

	.contact-popup__right {
		display: none;
	}

	.contact-popup__left {
		padding: 60px 44px;
	}

	.contact-popup__dialog {
		width: 95%;
	}

	.contact-popup__close-desktop {
		display: none;
	}

	.contact-popup__close-mobile {
		display: block;
	}
	.contact-popup__close {
		top: 20px;
		right: 20px;
	}
	.hero__cta .btn--cta {
  margin-right: 70px;
  font-size: 18px;
  line-height: 30px;
}
.hero__cta .btn--cta::before {
  width: 40px;
  height: 40px;
  left: auto;
  transform: rotate(90deg);
  right: -60px;
  top: -60px;
}
}

