/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --primary-color: #f4f3ef;
  --secondary-color: #030202;
  --third-color: #495042;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Inter', sans-serif;
  --second-font: 'Playfair Display', serif;
  --biggest-font-size: 8.5rem;
  --h1-font-size: 8.5rem;
  --h2-font-size: 6.5rem;
  --h3-font-size: 3.5rem;
  --normal-font-size: 1.4rem;
  --small-font-size: 1.2rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  /*========== z index ==========*/
  --site-container: 1900px;
  --site-border-radius-bigger: 7rem;
  --site-border-radius-big: 5rem;
  --site-border-radius: 2rem;
}
/*========== Responsive typography ==========*/
/* @media screen and (max-width: 1152px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1.5rem;
    --small-font-size: 1rem;
    --small-font-size: 0.75rem;
  }
} */
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: black;
}
body {
  background-color: var(--primary-color);
  overflow-x: hidden;
}
button,
input {
  outline: none;
  border: none;
}
button {
  cursor: pointer;
}
h1 {
  font-size: var(--h1-font-size);
}
h2 {
  font-size: var(--h2-font-size);
}
h1,
h2 {
  color: black;
  font-family: var(--second-font);
  font-weight: var(--font-regular);
  line-height: 1;
}
h3,
h4 {
  color: black;
  font-family: var(--body-font);
  font-weight: bold;
  line-height: 1;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.xxl-container {
  max-width: 1700px;
  margin: auto;
}
.xl-container {
  max-width: var(--site-container);
  margin: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.l-container {
  max-width: 1200px;
  margin: auto;
}
.shadow {
  background: linear-gradient(rgb(0, 0, 0, 0), rgba(0, 0, 0.05));
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.visually-hidden {
  display: none;
}

a.pdf-url {
  color: white;
  background-color: var(--secondary-color);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  font-size: 1.7rem;
  font-weight: bold;
  word-break: break-all;
}
a.pdf-url::after {
  content: '\f3c6';
  font-family: 'remixicon';
  color: white;
}

/* scrollbar  */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: white;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
}

/*=============== HEADER ===============*/
header#header {
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
  background-color: var(--primary-color);
}
header#header .header__container {
  display: flex;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  gap: 2rem;
}
.header__logo img {
  height: 44px;
  max-height: 44px;
  width: auto;
}
.header__main-nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__main-nav-wrapper ul {
  display: flex;
  color: var(--secondary-color);
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.header__main-nav-wrapper .header__main-nav {
  padding: 0 3rem;
}
.header__main-nav-wrapper .header__main-nav li.menu-item.has-dropdown {
  position: relative;
  padding-right: 3rem;
  transition: all 300ms ease-in-out;
}
.header__main-nav-wrapper .header__main-nav li.menu-item.has-dropdown:after {
  content: '\ea4e';
  font-family: 'remixicon';
  font-size: 1.6rem;
  color: var(--secondary-color);
  position: absolute;
  right: 0.8rem;
  top: 18px;
  transform: translateY(-45%);
  transition: all 300ms ease-in-out;
}
.header__main-nav-wrapper .header__main-nav li.menu-item.has-dropdown:hover:after {
  transform: translateY(-45%) rotate(180deg);
}
.header__main-nav-wrapper ul li a {
  color: var(--secondary-color);
}
.main-menu .submenu ul {
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.main-menu .submenu {
  position: absolute;
  background-color: var(--primary-color);
  border: 1px solid rgba(3, 2, 2, 0.12);
  box-shadow: 0 8px 32px rgba(3, 2, 2, 0.1);
  display: none;
  flex-direction: column;
  padding: 1.5rem 0 1.5rem;
  z-index: 9999;
  min-width: 280px;
  top: 58px;
}
.main-menu .submenu__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(3, 2, 2, 0.38);
  padding: 0 2rem 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(3, 2, 2, 0.08);
}
.main-menu .submenu-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-menu .submenu-list li a i {
  font-size: 1.8rem;
  color: var(--third-color);
  flex-shrink: 0;
}
.menu-item {
  padding: 1rem;
  font-weight: bold;
}
.menu-item.has-dropdown._active a {
  color: var(--secondary-color);
  transition: all 300ms ease-in-out;
}
.header__main-nav-wrapper .header__main-nav li.menu-item.has-dropdown._active:after {
  color: var(--secondary-color);
}
.main-menu .submenu a {
  color: var(--secondary-color);
}
.main-menu .submenu._active {
  display: flex;
}
.main-menu .submenu .submenu-list li {
  padding: 0.9rem 2rem;
  transition: background-color 200ms ease-in-out;
}
.main-menu .submenu .submenu-list li:hover {
  background-color: rgba(73, 80, 66, 0.08);
}
.main-menu .submenu .submenu-list li:hover a {
  color: var(--secondary-color);
}
.main-menu .submenu .submenu-list li:hover a i {
  color: var(--third-color);
}
.header__login-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header__login-buttons .login {
  padding: 0.9rem 2rem;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  transition: all 300ms ease-in-out;
}
.header__login-buttons .login:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.header__login-buttons .signup {
  padding: 0.9rem 2rem;
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  transition: all 300ms ease-in-out;
}
.header__login-buttons .signup:hover {
  background-color: transparent;
  color: var(--secondary-color);
}
.header__buttons i {
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 2.2rem;
}

/* HERO  */
#hero {
  position: relative;
}
.hero-container {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
}
.hero-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__shadow {
  background: linear-gradient(to top, rgba(3, 2, 2, 0.88) 0%, rgba(3, 2, 2, 0.4) 55%, rgba(3, 2, 2, 0.15) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 7rem;
}
.hero__body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(244, 243, 239, 0.75);
  font-size: var(--small-font-size);
}
.hero__badge img {
  max-width: 65px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.hero__badge-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.hero__badge-stars i {
  color: white;
  font-size: 1.4rem;
}
.hero__badge span {
  color: rgba(244, 243, 239, 0.65);
}
.hero__title {
  font-family: var(--second-font);
  font-size: var(--biggest-font-size);
  font-weight: var(--font-regular);
  color: var(--primary-color);
  line-height: 1;
}
.hero__search form {
  display: flex;
  align-items: stretch;
  background-color: var(--primary-color);
  width: fit-content;
  margin-top: 4rem;
}
.hero__search .select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.hero__search .select-wrapper i {
  position: absolute;
  right: 1.2rem;
  font-size: 1.8rem;
  color: var(--secondary-color);
  pointer-events: none;
}
.hero__search form select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 1.6rem 3.6rem 1.6rem 2rem;
  font-size: var(--small-font-size);
  font-family: var(--body-font);
  cursor: pointer;
  width: 220px;
  color: var(--secondary-color);
}
.hero__search form input {
  background: transparent;
  border: none;
  padding: 1.6rem 2rem;
  font-size: var(--small-font-size);
  font-family: var(--body-font);
  min-width: 220px;
  color: var(--secondary-color);
}
.hero__search form input::placeholder {
  color: #999;
}
.hero__search form button {
  background-color: var(--third-color);
  color: var(--primary-color);
  padding: 1.6rem 3rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  transition: all 300ms ease-in-out;
}
.hero__search form button:hover {
  background-color: var(--third-color);
}
/*=============== MOBILE MENU ===============*/
#mobile-menu {
  position: fixed;
  right: 0;
  z-index: 200;
  background-color: var(--secondary-color);
  height: 100vh;
  width: 100%;
  max-width: 360px;
  top: 0;
  box-shadow: -4px 0 32px rgba(3, 2, 2, 0.25);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}
#mobile-menu._active {
  transform: translateX(0);
}
.mobile-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(244, 243, 239, 0.1);
  flex-shrink: 0;
}
.mobile-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.mobile-menu-close i {
  color: rgba(244, 243, 239, 0.7);
  cursor: pointer;
  font-size: 2.2rem;
  transition: color 200ms ease;
}
.mobile-menu-close i:hover {
  color: var(--primary-color);
}
.mobile-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
#mobile-menu li.menu-item {
  border-bottom: 1px solid rgba(244, 243, 239, 0.07);
}
#mobile-menu li.menu-item a {
  display: block;
  color: var(--primary-color);
  padding: 1.4rem 2.5rem;
  font-weight: 600;
  font-size: 1.4rem;
}
#mobile-menu li.menu-item.has-dropdown {
  position: relative;
  transition: all 300ms ease-in-out;
}
#mobile-menu li.menu-item.has-dropdown > a {
  padding-right: 5rem;
}
#mobile-menu li.menu-item.has-dropdown:after {
  content: '\ea4e';
  font-family: 'remixicon';
  font-size: 1.8rem;
  color: rgba(244, 243, 239, 0.5);
  position: absolute;
  right: 2rem;
  top: 23px;
  transition: transform 300ms ease-in-out;
  pointer-events: none;
}
#mobile-menu li.menu-item.has-dropdown._active:after {
  transform: rotate(180deg);
}
#mobile-menu .submenu {
  display: none;
  background-color: rgba(244, 243, 239, 0.05);
}
#mobile-menu .submenu._active {
  display: block;
}
#mobile-menu .submenu-list {
  display: flex;
  flex-direction: column;
}
#mobile-menu .submenu-list li a {
  padding: 1.1rem 2.5rem 1.1rem 3.5rem;
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(244, 243, 239, 0.75);
}
#mobile-menu .submenu-list li a:hover {
  color: var(--primary-color);
}
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2.5rem;
  border-top: 1px solid rgba(244, 243, 239, 0.1);
  flex-shrink: 0;
}
.mobile-cta__login {
  display: block;
  text-align: center;
  padding: 1.2rem 2rem;
  color: var(--primary-color);
  border: 1px solid rgba(244, 243, 239, 0.3);
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 250ms ease;
}
.mobile-cta__login:hover {
  border-color: var(--primary-color);
  background-color: rgba(244, 243, 239, 0.08);
}
.mobile-cta__signup {
  display: block;
  text-align: center;
  padding: 1.2rem 2rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.4rem;
  transition: all 250ms ease;
}
.mobile-cta__signup:hover {
  background-color: rgba(244, 243, 239, 0.88);
}

.header__buttons {
  display: none;
  margin-left: auto;
}
/*=============== MAIN ===============*/

/*=============== SHARED SECTION STYLES ===============*/
.section-label {
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  letter-spacing: 0.15em;
  color: var(--third-color);
  margin-bottom: 1.5rem;
}
.section-label--light {
  color: rgba(244, 243, 239, 0.6);
}
.section-title {
  font-family: var(--second-font);
  font-size: 4.5rem;
  font-weight: var(--font-regular);
  line-height: 1.1;
  color: var(--secondary-color);
  margin-bottom: 0;
}
.section-title--light {
  color: var(--primary-color);
}
.section-header {
  margin-bottom: 6rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--third-color);
  color: var(--primary-color);
  padding: 1.5rem 3rem;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  transition: all 300ms ease-in-out;
}
.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 1.5rem 3rem;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  transition: all 300ms ease-in-out;
}
.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/*=============== REVIEWS ===============*/
.section-reviews {
  padding: 10rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.review-card {
  background-color: white;
  border: 1px solid #e0dfd9;

  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 300ms ease-in-out;
}
.review-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}
.review-card__stars {
  display: flex;
  gap: 0.3rem;
}
.review-card__stars i {
  color: var(--third-color);
  font-size: 1.8rem;
}
.review-card__text {
  font-size: var(--small-font-size);
  line-height: 1.8;
  color: #444;
  flex-grow: 1;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid #f0f0ee;
}
.review-card__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: var(--third-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
}
.review-card__platform img {
  max-width: 55px;
  margin-top: 0.4rem;
}

/*=============== HOW IT WORKS ===============*/
.section-how-it-works {
  background-color: var(--secondary-color);
  padding: 10rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.step-card {
  padding: 4rem 3rem;
  border: 1px solid rgba(244, 243, 239, 0.12);

  transition: all 300ms ease-in-out;
}
.step-card:hover {
  border-color: rgba(244, 243, 239, 0.35);
  background-color: rgba(244, 243, 239, 0.04);
}
.step-number {
  font-size: 5rem;
  font-weight: bold;
  color: var(--third-color);
  font-family: var(--second-font);
  line-height: 1;
  margin-bottom: 2.5rem;
}
.step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.step-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: var(--body-font);
  line-height: 1;
}
.step-desc {
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.6);
  line-height: 1.7;
}

/*=============== JOB POSTS ===============*/
.section-jobs {
  padding: 10rem 0;
}
.jobs-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.jobs-filter__btn {
  background: transparent;
  border: 1px solid var(--secondary-color);
  padding: 0.9rem 2.5rem;

  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  transition: all 300ms ease-in-out;
  cursor: pointer;
  font-family: var(--body-font);
}
.jobs-filter__btn._active,
.jobs-filter__btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}
.job-card {
  background-color: white;
  border: 1px solid #e0dfd9;

  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 300ms ease-in-out;
}
.job-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}
.job-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.job-card__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--small-font-size);
  color: var(--third-color);
  font-weight: var(--font-semi-bold);
}
.job-card__type {
  font-size: var(--small-font-size);
  background-color: var(--primary-color);
  padding: 0.4rem 1.2rem;

  border: 1px solid #d5d4ce;
  font-weight: var(--font-medium);
}
.job-card__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--secondary-color);
  line-height: 1.3;
}
.job-card__desc {
  font-size: var(--small-font-size);
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}
.job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0ee;
}
.job-card__pay {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--third-color);
}
.job-card__btn {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--secondary-color);
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--secondary-color);

  transition: all 300ms ease-in-out;
}
.job-card__btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.jobs-cta {
  text-align: center;
}

/*=============== VERIFIED CARERS ===============*/
.section-carers {
  padding: 10rem 0;
  background-color: white;
}
.carers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.carer-card {
  border: 1px solid #e5e5e2;

  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  transition: all 300ms ease-in-out;
}
.carer-card:hover {
  border-color: var(--third-color);
  transform: translateY(-0.3rem);
  box-shadow: 0 10px 35px rgba(73, 80, 66, 0.1);
}
.carer-card__avatar {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: var(--third-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.carer-card__verified {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--small-font-size);
  color: var(--third-color);
  font-weight: var(--font-semi-bold);
}
.carer-card__name {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.carer-card__specialty {
  font-size: var(--small-font-size);
  color: #777;
}
.carer-card__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.carer-card__rating i {
  color: var(--third-color);
  font-size: 1.3rem;
}
.carer-card__rating span {
  font-size: var(--small-font-size);
  font-weight: bold;
  margin-left: 0.4rem;
  color: var(--secondary-color);
}
.carer-card__location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--small-font-size);
  color: #888;
}
.carer-card__btn {
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--secondary-color);

  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  transition: all 300ms ease-in-out;
  color: var(--secondary-color);
}
.carer-card__btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/*=============== ABOUT US ===============*/
.section-about {
  padding: 10rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.about-desc {
  font-size: var(--small-font-size);
  line-height: 1.9;
  color: #555;
  margin-bottom: 4rem;
}
.about-stats {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.stat-number {
  font-family: var(--second-font);
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--third-color);
  line-height: 1;
}
.stat-label {
  font-size: var(--small-font-size);
  color: #888;
  max-width: 110px;
  line-height: 1.5;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-visual__card {
  background-color: var(--primary-color);
  border: 1px solid #e0dfd9;

  padding: 3rem;
  transition: all 300ms ease-in-out;
}
.about-visual__card:hover {
  border-color: var(--third-color);
  box-shadow: 0 6px 24px rgba(73, 80, 66, 0.08);
}
.about-visual__card i {
  font-size: 3rem;
  color: var(--third-color);
  margin-bottom: 1.5rem;
  display: block;
}
.about-visual__card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.about-visual__card p {
  font-size: var(--small-font-size);
  color: #777;
  line-height: 1.6;
}

/*=============== MEMBERSHIP ===============*/
.section-membership {
  background-color: var(--secondary-color);
  padding: 10rem 0;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
}
.membership-card {
  background-color: rgba(244, 243, 239, 0.04);
  border: 1px solid rgba(244, 243, 239, 0.12);
  height: 100%;
  padding: 4rem 3.5rem;
  color: var(--primary-color);
  position: relative;
  transition: all 300ms ease-in-out;
}
.membership-card:hover {
  border-color: rgba(244, 243, 239, 0.35);
}
.membership-card--featured {
  background-color: var(--third-color);
  border-color: var(--third-color);
}
.membership-card__badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 2rem;
  font-size: var(--small-font-size);
  font-weight: bold;
  white-space: nowrap;
}
.membership-card__header {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 243, 239, 0.15);
}
.membership-card__header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgba(244, 243, 239, 0.8);
  margin-bottom: 1.5rem;
}
.membership-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.membership-card__price .price {
  font-family: var(--second-font);
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}
.membership-card__price .period {
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.5);
}
.membership-card__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.membership-card__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.85);
}
.membership-card__features li i {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.membership-card__features li i.ri-check-line {
  color: #a8c5a0;
}
.membership-card__features li.disabled {
  opacity: 0.35;
}
.membership-card__features li i.ri-close-line {
  color: #e57373;
}
.membership-card__btn {
  display: block;
  text-align: center;
  padding: 1.5rem;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  border: 1px solid rgba(244, 243, 239, 0.4);
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
  font-family: var(--body-font);
}
.membership-card__btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}
.membership-card--featured .membership-card__btn {
  background-color: var(--primary-color);
  color: var(--third-color);
  border-color: var(--primary-color);
}
.membership-card--featured .membership-card__btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

/*=============== HERO EXCLUSIVE TAG ===============*/
.hero__exclusive-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--third-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem;
  border-radius: 3rem;
  width: fit-content;
}
.hero__exclusive-tag i {
  font-size: 1.5rem;
}

/*=============== HIGHLIGHT TEXT ===============*/
.highlight-text {
  color: var(--third-color);
}

/*=============== SIGNUP MODAL ===============*/
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.signup-modal._active {
  opacity: 1;
  pointer-events: all;
}
.signup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}
.signup-modal__box {
  position: relative;
  background: #fff;
  border-radius: 1.6rem;
  padding: 4rem 3.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 300ms ease;
}
.signup-modal._active .signup-modal__box {
  transform: translateY(0);
}
.signup-modal__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.signup-modal__title {
  font-family: var(--second-font);
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}
.signup-modal__subtitle {
  color: #777;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.signup-modal__roles {
  display: flex;
  gap: 1.6rem;
}
.signup-modal__role {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2.5rem 1.5rem;
  border: 2px solid #e8e4df;
  border-radius: 1.2rem;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 250ms ease;
}
.signup-modal__role:hover {
  border-color: var(--third-color);
  background-color: #fdf8f4;
  transform: translateY(-3px);
}
.signup-modal__role i {
  font-size: 3.2rem;
  color: var(--third-color);
}
.signup-modal__role strong {
  font-size: 1.7rem;
  font-weight: 700;
}
.signup-modal__role span {
  font-size: 1.3rem;
  color: #888;
}
@media only screen and (max-width: 480px) {
  .signup-modal__roles {
    flex-direction: column;
  }
}

/*=============== FOOTER ===============*/
#footer {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  padding-top: 7rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid rgba(244, 243, 239, 0.12);
}
.footer-logo img {
  height: 42px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.55);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(244, 243, 239, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 243, 239, 0.7);
  font-size: 1.6rem;
  transition: all 300ms ease-in-out;
}
.footer-socials a:hover {
  background-color: var(--third-color);
  border-color: var(--third-color);
  color: var(--primary-color);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.footer-col h4 {
  font-size: var(--small-font-size);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-col ul li a {
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.5);
  transition: color 300ms ease-in-out;
}
.footer-col ul li a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-bottom span {
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.4);
}
.footer-legal {
  display: flex;
  gap: 2.5rem;
}
.footer-legal a {
  font-size: var(--small-font-size);
  color: rgba(244, 243, 239, 0.4);
  transition: color 300ms ease-in-out;
}
.footer-legal a:hover {
  color: var(--primary-color);
}

/*== FOOTER END ==*/

/* BREAKPOINTS FOR 1550PX  */

@media only screen and (max-width: 1550px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .carers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* BREAKPOINTS FOR 1200PX  */

@media only screen and (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    gap: 5rem;
  }
  .membership-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .footer-main {
    gap: 5rem;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

/* BREAKPOINTS FOR 991PX  */

@media only screen and (max-width: 991px) {
  .header__main-nav-wrapper,
  .header__login-buttons {
    display: none;
  }
  .header__buttons {
    display: flex;
    align-items: center;
  }
  .hero__title {
    font-size: 6rem;
  }
  .hero__search form {
    flex-wrap: wrap;
    width: 100%;
  }
  .hero__search .select-wrapper,
  .hero__search form input {
    min-width: 0;
    flex: 1;
  }
  .hero__search form select {
    width: 100%;
  }
  .section-title {
    font-size: 3.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .about-stats {
    gap: 2.5rem;
  }
  .membership-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

/* BREAKPOINTS FOR 661PX  */

@media only screen and (max-width: 661px) {
  .hero__title {
    font-size: 4.5rem;
  }
  .hero__search form {
    flex-direction: column;
    width: 100%;
  }
  .hero__search .select-wrapper,
  .hero__search form input {
    border-right: none;
    border-bottom: 1px solid var(--secondary-color);
    min-width: 0;
    width: 100%;
  }
  .hero__search form button {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: 3rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .carers-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    gap: 1.5rem;
  }
  .jobs-filter {
    gap: 0.8rem;
  }
}

/* BREAKPOINTS GIA MEGALES OTHONES  */
@media only screen and (min-width: 1921px) {
}

/*=============== PRICING PAGE TABS ===============*/
.pricing-page-tabs {
  display: flex;
  gap: 1rem;
}
.pricing-tab-btn {
  padding: 0.9rem 2.4rem;
  font-size: 1.3rem;
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  color: rgba(244, 243, 239, 0.55);
  border: 1px solid rgba(244, 243, 239, 0.2);
  background: transparent;
  cursor: pointer;
  transition: all 200ms ease;
}
.pricing-tab-btn.active,
.pricing-tab-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/*=============== HOW IT WORKS DETAIL ===============*/
.section-how-it-works-detail {
  padding: 10rem 0;
  background-color: var(--primary-color);
  position: relative;
}
.hiw-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: start;
}
.hiw-column {
  background-color: #fff;
  border: 1px solid rgba(3, 2, 2, 0.08);
  padding: 4rem;
}
.hiw-column__header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(3, 2, 2, 0.08);
}
.hiw-column__icon {
  width: 5.2rem;
  height: 5.2rem;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.4rem;
  color: var(--primary-color);
}
.hiw-column__icon--pro {
  background-color: var(--third-color);
}
.hiw-column__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(3, 2, 2, 0.4);
  margin-bottom: 0.6rem;
}
.hiw-column__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--secondary-color);
}
.hiw-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-bottom: 4rem;
}
.hiw-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.hiw-step__num {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(3, 2, 2, 0.2);
  flex-shrink: 0;
  padding-top: 0.2rem;
  min-width: 2.4rem;
}
.hiw-step__body h4.hiw-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.hiw-step__desc {
  font-size: 1.3rem;
  color: rgba(3, 2, 2, 0.55);
  line-height: 1.6;
}
.hiw-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 2.8rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  transition: all 200ms ease;
}
.hiw-cta:hover {
  background-color: var(--third-color);
  color: white;
}
.hiw-cta--pro {
  background-color: var(--third-color);
  color: white;
}
.hiw-cta--pro:hover {
  background-color: #3d4438;
}
.hiw-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hiw-divider span {
  font-size: 1.4rem;
  color: rgba(3, 2, 2, 0.3);
  font-weight: 600;
  background-color: var(--primary-color);
  padding: 0.8rem 0;
  position: relative;
}
.hiw-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(3, 2, 2, 0.1);
  left: 50%;
}

/*=============== TRUST STRIP ===============*/
.trust-strip {
  background-color: var(--secondary-color);
  padding: 3.5rem 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(244, 243, 239, 0.75);
  font-size: 1.3rem;
  font-weight: 500;
}
.trust-item i {
  font-size: 2rem;
  color: var(--third-color);
}
.trust-sep {
  width: 1px;
  height: 2rem;
  background-color: rgba(244, 243, 239, 0.15);
}

/*=============== PRICING SECTION ===============*/
.section-pricing {
  padding: 0 0 8rem;
}
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 6rem;
  border: 1px solid rgba(244, 243, 239, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing-toggle__btn {
  padding: 1rem 3rem;
  font-size: 1.3rem;
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  color: var(--secondary-color);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
}
.pricing-toggle__btn._active {
  background-color: var(--secondary-color);
  color: white;
}
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.pricing-card {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 4rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease;
}
.pricing-card:hover {
  /* border-color: rgba(244, 243, 239, 0.25); */
}
.pricing-card--featured {
  background-color: var(--primary-color);
  border-color: var(--secondary-color);
}
.pricing-card--featured .pricing-card__badge,
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__amount,
.pricing-card--featured .pricing-card__currency,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__features li {
  color: var(--secondary-color) !important;
}
.pricing-card--featured .pricing-card__feature--no {
  opacity: 0.35;
}
.pricing-card--free {
  border-color: rgba(73, 80, 66, 0.4);
}
.pricing-card__popular {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--third-color);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 1.8rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-card__badge {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(244, 243, 239, 0.45);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.pricing-card__amount {
  font-family: var(--second-font);
  font-size: 6rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
}
.pricing-card__meta {
  display: flex;
  flex-direction: column;
  padding-top: 0.8rem;
}
.pricing-card__currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.pricing-card__period {
  font-size: 1.2rem;
  color: rgba(244, 243, 239, 0.4);
}
.pricing-card__price--custom {
  align-items: center;
  min-height: 6rem;
}
.pricing-card__amount-custom {
  font-family: var(--second-font);
  font-size: 3rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.2;
}
.pricing-card--featured .pricing-card__amount-custom {
  color: var(--secondary-color);
}
.pricing-card__desc {
  font-size: 1.3rem;
  color: rgba(244, 243, 239, 0.5);
  line-height: 1.6;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 243, 239, 0.1);
}
.pricing-card--featured .pricing-card__desc {
  border-color: rgba(3, 2, 2, 0.1);
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  color: rgba(244, 243, 239, 0.8);
}
.pricing-card__features li i {
  font-size: 1.6rem;
  color: var(--third-color);
  flex-shrink: 0;
}
.pricing-card--featured .pricing-card__features li i {
  color: var(--third-color);
}
.pricing-card__feature--no {
  opacity: 0.3;
}
.pricing-card__feature--no i {
  color: rgba(244, 243, 239, 0.4) !important;
}
.pricing-card--featured .pricing-card__feature--no i {
  color: rgba(3, 2, 2, 0.3) !important;
}
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 1.3rem 2rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  border: 1px solid transparent;
  transition: all 200ms ease;
}
.pricing-card__cta:hover {
  background-color: var(--third-color);
  color: white;
}
.pricing-card--featured .pricing-card__cta {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.pricing-card__cta--outline {
  background-color: transparent;
  color: rgba(244, 243, 239, 0.7);
  border-color: rgba(244, 243, 239, 0.2);
}
.pricing-card__cta--outline:hover {
  background-color: rgba(244, 243, 239, 0.08);
  color: var(--primary-color);
  border-color: rgba(244, 243, 239, 0.4);
}
.pricing-note {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(244, 243, 239, 0.3);
}

/*=============== FAQ SECTION ===============*/
.section-faq {
  padding: 10rem 0;
  background-color: var(--primary-color);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(3, 2, 2, 0.1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(3, 2, 2, 0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 2.2rem 0;
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: color 200ms ease;
}
.faq-question i {
  font-size: 2rem;
  flex-shrink: 0;
  transition: transform 200ms ease;
  color: var(--third-color);
}
.faq-item._open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 300ms ease,
    padding 300ms ease;
}
.faq-item._open .faq-answer {
  max-height: 200px;
  padding-bottom: 2.2rem;
}
.faq-answer p {
  font-size: 1.4rem;
  color: rgba(3, 2, 2, 0.6);
  line-height: 1.7;
}

/*=============== BOTTOM CTA SECTION ===============*/
.section-cta-bottom {
  background-color: var(--secondary-color);
  padding: 0 0 10rem;
}
.cta-bottom-card {
  background: linear-gradient(135deg, rgba(73, 80, 66, 0.3) 0%, rgba(73, 80, 66, 0.08) 100%);
  border: 1px solid rgba(73, 80, 66, 0.35);
  padding: 6rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.cta-bottom-card__title {
  font-family: var(--second-font);
  font-size: 4rem;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 1rem;
}
.cta-bottom-card__subtitle {
  font-size: 1.4rem;
  color: rgba(244, 243, 239, 0.55);
  line-height: 1.6;
}
.cta-bottom-card__actions {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}
.cta-bottom-btn {
  display: inline-flex;
  align-items: center;
  padding: 1.3rem 2.8rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: var(--font-semi-bold);
  font-family: var(--body-font);
  transition: all 200ms ease;
  white-space: nowrap;
}
.cta-bottom-btn:hover {
  background-color: var(--third-color);
  color: white;
}
.cta-bottom-btn--outline {
  background-color: transparent;
  color: rgba(244, 243, 239, 0.75);
  border: 1px solid rgba(244, 243, 239, 0.25);
}
.cta-bottom-btn--outline:hover {
  background-color: rgba(244, 243, 239, 0.08);
  color: var(--primary-color);
  border-color: rgba(244, 243, 239, 0.4);
}

/*=============== PRICING PAGE RESPONSIVE ===============*/
@media only screen and (max-width: 1024px) {
  .hiw-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hiw-divider {
    display: flex;
    flex-direction: row;
    padding-top: 0;
  }
  .hiw-divider::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
  .pricing-plans {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-bottom-card {
    flex-direction: column;
    text-align: center;
  }
  .cta-bottom-card__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-bottom-btn {
    justify-content: center;
  }
  .trust-strip__inner {
    gap: 2.5rem;
  }
  .trust-sep {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .hiw-column {
    padding: 3rem 2.5rem;
  }
  .pricing-page-tabs {
    flex-wrap: wrap;
  }
}

/*=============== PAGE HEADER ===============*/
.page-header {
  background-color: var(--secondary-color);
  padding: 5rem 0 6rem;
  border-bottom: 3px solid var(--third-color);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  color: rgba(244, 243, 239, 0.5);
  margin-bottom: 2.5rem;
}
.breadcrumb a {
  color: rgba(244, 243, 239, 0.5);
  transition: color 200ms ease;
}
.breadcrumb a:hover {
  color: var(--primary-color);
}
.breadcrumb i {
  font-size: 1.4rem;
}
.breadcrumb span {
  color: rgba(244, 243, 239, 0.85);
}
.page-header__content {
  margin-bottom: 3.5rem;
}
.page-header__title {
  font-size: 5.5rem;
  color: var(--primary-color);
  font-family: var(--second-font);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.page-header__subtitle {
  color: rgba(244, 243, 239, 0.6);
  font-size: 1.4rem;
  max-width: 540px;
  line-height: 1.7;
}
.page-header__search {
  display: flex;
  align-items: stretch;
  max-width: 680px;
  background-color: var(--primary-color);
}
.ph-search,
.ph-search-location {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.ph-search {
  border-right: 1px solid rgba(3, 2, 2, 0.12);
}
.ph-search i,
.ph-search-location i {
  position: absolute;
  left: 1.6rem;
  font-size: 1.6rem;
  color: #aaa;
  pointer-events: none;
}
.ph-search input,
.ph-search-location input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 1.5rem 1.5rem 4.2rem;
  font-size: 1.3rem;
  font-family: var(--body-font);
  color: var(--secondary-color);
}
.ph-search input::placeholder,
.ph-search-location input::placeholder {
  color: #aaa;
}
.ph-search input:focus,
.ph-search-location input:focus {
  outline: none;
}
.ph-search-btn {
  background-color: var(--third-color);
  color: white;
  border: none;
  padding: 1.5rem 2.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--body-font);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 200ms ease;
}
.ph-search-btn:hover {
  background-color: #3d4438;
}

/*=============== LISTINGS LAYOUT ===============*/
.section-listings {
  padding: 6rem 0 10rem;
}
.listings-layout {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 5rem;
  align-items: start;
}

/*=============== SIDEBAR ===============*/
.listings-sidebar {
  position: sticky;
  top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.filter-search {
  position: relative;
  margin-bottom: 0.8rem;
}
.filter-search i {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #aaa;
  pointer-events: none;
}
.filter-search input {
  width: 100%;
  border: 1px solid #dddcd7;
  padding: 1.3rem 1.5rem 1.3rem 4rem;
  font-size: 1.3rem;
  font-family: var(--body-font);
  background: white;
  color: var(--secondary-color);
  transition: border-color 200ms ease;
}
.filter-search input:focus {
  outline: none;
  border-color: var(--third-color);
}
.filter-group {
  background: white;
  border: 1px solid #e8e7e2;
}
.filter-group summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  letter-spacing: 0.01em;
}
.filter-group summary::-webkit-details-marker {
  display: none;
}
.filter-group summary i {
  font-size: 1.8rem;
  color: #bbb;
  transition: transform 200ms ease;
}
.filter-group[open] > summary i {
  transform: rotate(180deg);
}
.filter-group__body {
  padding: 0.8rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid #f0efea;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.3rem;
  color: #555;
  padding: 0.3rem 0;
  transition: color 150ms ease;
}
.filter-checkbox:hover {
  color: var(--secondary-color);
}
.filter-checkbox input[type='checkbox'] {
  display: none;
}
.filter-checkbox__box {
  position: relative;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid #ccc;
  background: white;
  transition: all 150ms ease;
}
.filter-checkbox input:checked ~ .filter-checkbox__box {
  background-color: var(--third-color);
  border-color: var(--third-color);
}
.filter-checkbox input:checked ~ .filter-checkbox__box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.filter-checkbox__label {
  flex: 1;
  line-height: 1.3;
}
.filter-checkbox__count {
  font-size: 1.1rem;
  color: #bbb;
  background: #f4f3ef;
  padding: 0.1rem 0.6rem;
  font-weight: 600;
}
.filter-apply {
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--body-font);
  cursor: pointer;
  margin-top: 1.2rem;
  transition: background-color 200ms ease;
  letter-spacing: 0.03em;
}
.filter-apply:hover {
  background-color: var(--third-color);
}
.filter-reset {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 0.8rem;
  padding: 0.6rem;
  transition: color 200ms ease;
}
.filter-reset:hover {
  color: var(--secondary-color);
}

/*=============== RESULTS BAR ===============*/
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e7e2;
}
.results-count {
  font-size: 1.4rem;
  color: #777;
}
.results-count strong {
  color: var(--secondary-color);
  font-size: 1.7rem;
}
.results-sort {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  color: #777;
}
.results-sort .select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.results-sort .select-wrapper i {
  position: absolute;
  right: 1rem;
  font-size: 1.6rem;
  color: #888;
  pointer-events: none;
}
.results-sort select {
  appearance: none;
  -webkit-appearance: none;
  background: white;
  border: 1px solid #dddcd7;
  padding: 0.8rem 3.2rem 0.8rem 1.2rem;
  font-size: 1.3rem;
  font-family: var(--body-font);
  cursor: pointer;
  color: var(--secondary-color);
  transition: border-color 200ms ease;
}
.results-sort select:focus {
  outline: none;
  border-color: var(--third-color);
}

/*=============== ACTIVE FILTER TAGS ===============*/
.active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.active-filters__label {
  font-size: 1.2rem;
  color: #aaa;
  margin-right: 0.4rem;
}
.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(73, 80, 66, 0.1);
  color: var(--third-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0.7rem 0.5rem 1.2rem;
}
.active-filter-tag button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--third-color);
  font-size: 1.5rem;
  line-height: 1;
  transition: color 150ms ease;
}
.active-filter-tag button:hover {
  color: var(--secondary-color);
}

/*=============== JOB LIST CARDS ===============*/
.job-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 5rem;
}
.jl-card {
  background: white;
  border: 1px solid #e8e7e2;
  border-left: 3px solid var(--third-color);
  transition:
    box-shadow 250ms ease,
    transform 250ms ease;
}
.jl-card:hover {
  box-shadow: 0 6px 28px rgba(3, 2, 2, 0.08);
  transform: translateY(-2px);
}
.jl-card--featured {
  border-left-color: #9e513f;
}
.jl-card__inner {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding: 2.5rem;
}
.jl-card__icon {
  padding-top: 0.2rem;
}
.jl-card__icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--third-color);
  background: rgba(73, 80, 66, 0.08);
  width: 48px;
  height: 48px;
}
.jl-card--featured .jl-card__icon i {
  color: #9e513f;
  background: rgba(158, 81, 63, 0.08);
}
.jl-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jl-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.jl-card__badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9e513f;
  background: rgba(158, 81, 63, 0.1);
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.4rem;
}
.jl-card__type {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--third-color);
  margin-bottom: 0.4rem;
}
.jl-card--featured .jl-card__type {
  color: #9e513f;
}
.jl-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.35;
  font-family: var(--body-font);
}
.jl-card__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.jl-card__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: #bbb;
  white-space: nowrap;
}
.jl-card__date i {
  font-size: 1.3rem;
}
.jl-card__save {
  background: none;
  border: 1px solid #e8e7e2;
  padding: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1.6rem;
  transition: all 200ms ease;
}
.jl-card__save:hover,
.jl-card__save._saved {
  border-color: var(--third-color);
  color: var(--third-color);
}
.jl-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 1.25rem;
  color: #888;
}
.jl-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.jl-card__meta i {
  font-size: 1.4rem;
  color: #bbb;
}
.jl-card__desc {
  font-size: 1.3rem;
  color: #777;
  line-height: 1.7;
}
.jl-card__footer {
  padding-top: 1.5rem;
  border-top: 1px solid #f5f4f0;
}
.jl-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  border: 1px solid rgba(3, 2, 2, 0.2);
  padding: 0.9rem 2rem;
  transition: all 200ms ease;
  letter-spacing: 0.02em;
}
.jl-card__btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

/*=============== PAGINATION ===============*/
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination__btn,
.pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  border: 1px solid #e0dfd9;
  font-size: 1.3rem;
  font-weight: 600;
  color: #777;
  background: white;
  transition: all 200ms ease;
}
.pagination__btn {
  font-size: 1.6rem;
  color: #aaa;
}
.pagination__btn:hover,
.pagination__page:hover {
  border-color: var(--third-color);
  color: var(--third-color);
  background: rgba(73, 80, 66, 0.04);
}
.pagination__page--active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}
.pagination__page--active:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}
.pagination__dots {
  font-size: 1.3rem;
  color: #ccc;
  padding: 0 0.4rem;
  user-select: none;
}

/*=============== CAREGIVER GRID ===============*/
.cv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 5rem;
}

/*=============== CAREGIVER CARD ===============*/
.cv-card {
  background: white;
  border: 1px solid #e8e7e2;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition:
    box-shadow 250ms ease,
    transform 250ms ease;
}
.cv-card:hover {
  box-shadow: 0 8px 32px rgba(3, 2, 2, 0.09);
  transform: translateY(-3px);
}
.cv-card--top {
  border-top: 3px solid var(--third-color);
}
.cv-card__top {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.cv-card__avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.cv-card__avatar--green {
  background-color: var(--third-color);
}
.cv-card__avatar--dark {
  background-color: var(--secondary-color);
}
.cv-card__avatar--rust {
  background-color: #9e513f;
}
.cv-card__avatar--olive {
  background-color: #6b7355;
}
.cv-card__identity {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.cv-card__name-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.cv-card__name {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cv-card__verified {
  color: var(--third-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.cv-card__specialty {
  font-size: 1.2rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cv-card__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.cv-card__rating i {
  font-size: 1.3rem;
  color: #e8a020;
}
.cv-card__score {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 0.3rem;
}
.cv-card__reviews {
  font-size: 1.1rem;
  color: #bbb;
}
.cv-card__avail {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cv-card__avail::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cv-card__avail--now {
  color: #2d7a3f;
  background: rgba(45, 122, 63, 0.1);
}
.cv-card__avail--now::before {
  background-color: #2d7a3f;
}
.cv-card__avail--week {
  color: #b07010;
  background: rgba(176, 112, 16, 0.1);
}
.cv-card__avail--week::before {
  background-color: #e8a020;
}
.cv-card__avail--month {
  color: #888;
  background: rgba(0, 0, 0, 0.05);
}
.cv-card__avail--month::before {
  background-color: #bbb;
}
.cv-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 1.25rem;
  color: #888;
  padding-top: 0.4rem;
  border-top: 1px solid #f5f4f0;
}
.cv-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cv-card__meta i {
  font-size: 1.4rem;
  color: #c0bfb9;
}
.cv-card__bio {
  font-size: 1.3rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
}
.cv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f5f4f0;
  flex-wrap: wrap;
}
.cv-card__pay {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--third-color);
}
.cv-card__pay i {
  font-size: 1.5rem;
}
.cv-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  border: 1px solid rgba(3, 2, 2, 0.2);
  padding: 0.8rem 1.8rem;
  white-space: nowrap;
  transition: all 200ms ease;
  letter-spacing: 0.02em;
}
.cv-card__btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

/*=============== LISTINGS + CAREGIVER RESPONSIVE ===============*/
@media only screen and (max-width: 1200px) {
  .listings-layout {
    grid-template-columns: 240px 1fr;
    gap: 3.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .listings-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .listings-sidebar {
    position: static;
  }
  .page-header__title {
    font-size: 4rem;
  }
  .page-header__search {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .ph-search {
    border-right: none;
    border-bottom: 1px solid rgba(3, 2, 2, 0.12);
    width: 100%;
    flex: none;
  }
  .ph-search-location {
    width: 100%;
    flex: none;
  }
  .ph-search-btn {
    width: 100%;
    text-align: center;
  }
  .cv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 661px) {
  .page-header {
    padding: 4rem 0 5rem;
  }
  .page-header__title {
    font-size: 3.2rem;
  }
  .jl-card__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .jl-card__icon {
    display: none;
  }
  .jl-card__top {
    flex-direction: column;
    gap: 0.8rem;
  }
  .jl-card__actions {
    align-self: flex-start;
  }
  .results-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .active-filters__label {
    display: none;
  }
  .cv-grid {
    grid-template-columns: 1fr;
  }
  .cv-card__top {
    flex-wrap: wrap;
  }
  .cv-card__avail {
    order: -1;
    margin-left: auto;
  }
}

/*=============== LOGIN ===============*/
.main--login {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.login-form-wrap {
  width: 100%;
  max-width: 420px;
}
.login-title {
  font-family: var(--second-font);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.login-subtitle {
  font-size: 1.35rem;
  color: #7a7870;
  margin-bottom: 4rem;
  font-weight: 400;
}
.login-field {
  margin-bottom: 2rem;
}
.login-field label {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--secondary-color);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.login-field .input-wrap {
  position: relative;
}
.login-field input {
  width: 100%;
  border: 1px solid #c5c3bb;
  background: #ffffff;
  padding: 1.2rem 1.6rem;
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
  color: var(--secondary-color);
  outline: none;
  transition: border-color 250ms ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.login-field input:focus {
  border-color: var(--third-color);
}
.login-field input::placeholder {
  color: rgba(3, 2, 2, 0.3);
}
.login-field input[type='password'] {
  padding-right: 4.5rem;
}
.login-field .pw-toggle {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #888480;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  transition: color 200ms ease;
}
.login-field .pw-toggle:hover {
  color: var(--third-color);
}
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.8rem;
  margin-top: -0.5rem;
}
.login-remember {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: #5a5854;
  user-select: none;
}
.login-remember input[type='checkbox'] {
  width: 16px;
  height: 16px;
  border: 1px solid #c5c3bb;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition:
    border-color 200ms ease,
    background 200ms ease;
}
.login-remember input[type='checkbox']:checked {
  background: var(--third-color);
  border-color: var(--third-color);
}
.login-remember input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--primary-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.login-forgot {
  font-size: 1.25rem;
  color: var(--third-color);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: color 200ms ease;
}
.login-forgot:hover {
  color: var(--secondary-color);
}
.login-submit {
  width: 100%;
  background: var(--third-color);
  color: var(--primary-color);
  border: none;
  padding: 1.5rem 3rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  transition: background 300ms ease-in-out;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}
.login-submit:hover {
  background: var(--secondary-color);
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dddbd4;
}
.login-divider span {
  font-size: var(--small-font-size);
  color: #9e9c96;
  font-weight: var(--font-medium);
  flex-shrink: 0;
}
.login-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 1px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
  padding: 1.3rem 3rem;
  font-family: var(--body-font);
  font-size: 1.35rem;
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  box-sizing: border-box;
  margin-bottom: 3.5rem;
}
.login-google:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}
.login-google img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 300ms ease;
}
.login-google:hover img {
  filter: brightness(0) invert(1);
}
.login-register {
  text-align: center;
  font-size: 1.3rem;
  color: #7a7870;
  border-top: 1px solid #e4e2db;
  padding-top: 2.5rem;
}
.login-register a {
  color: var(--third-color);
  font-weight: var(--font-semi-bold);
  text-decoration: none;
  transition: color 200ms ease;
}
.login-register a:hover {
  color: var(--secondary-color);
}
@media (max-width: 480px) {
  .login-title {
    font-size: 3rem;
  }
}

/*=============== PROFILE | ERGAZOMENOS ===============*/

/* Hero */
.profile-hero {
  position: relative;
  background-color: var(--secondary-color);
  padding: 6rem 0 5rem;
}
.profile-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0b 0%, #2a2e26 100%);
  opacity: 0.97;
}
.profile-hero .xl-container {
  position: relative;
  z-index: 1;
}
.profile-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
.profile-hero__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.profile-hero__photo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.12);
}
.profile-hero__status {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #2d7a3f;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.profile-hero__status i {
  font-size: 0.8rem;
}
.profile-hero__info {
  flex: 1;
  min-width: 240px;
}
.profile-hero__role {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--third-color);
  margin-bottom: 0.8rem;
}
.profile-hero__name {
  font-family: var(--second-font);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.profile-hero__specialty {
  font-size: var(--normal-font-size);
  color: rgba(244, 243, 239, 0.55);
  margin-bottom: 1.8rem;
}
.profile-hero__rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.profile-hero__stars {
  display: flex;
  gap: 0.2rem;
  color: #e8a020;
  font-size: 1.6rem;
}
.profile-hero__rating-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
.profile-hero__rating-count {
  font-size: 1.2rem;
  color: rgba(244, 243, 239, 0.4);
}
.profile-hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.profile-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.profile-hero__stat strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.profile-hero__stat span {
  font-size: 1.1rem;
  color: rgba(244, 243, 239, 0.45);
}
.profile-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(244, 243, 239, 0.12);
}
.profile-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.profile-hero__actions .btn-primary {
  justify-content: center;
}

/* Body grid */
.profile-body {
  padding: 6rem 0;
  background: var(--primary-color);
}
.profile-body__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: auto;
}
.profile-card {
  background: #fff;
  border: 1px solid #e4e2db;
  padding: 3rem;
  margin-bottom: 3rem;
}
.profile-card:last-child {
  margin-bottom: 0;
}
.profile-card__header {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eeece6;
  margin-bottom: 2.5rem;
}
.profile-card__title {
  font-family: var(--second-font);
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.cal-nav__label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
}
.cal-nav__btn {
  background: none;
  border: 1px solid #e4e2db;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary-color);
  transition: all 200ms ease;
}
.cal-nav__btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #9e9c96;
  padding-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: default;
  position: relative;
}
.cal-day--empty {
  background: transparent;
}
.cal-day--available {
  background: rgba(73, 80, 66, 0.08);
  color: var(--third-color);
  font-weight: 600;
}
.cal-day--busy {
  background: rgba(3, 2, 2, 0.06);
  color: #b0ae a7;
  color: #aaa9a4;
  text-decoration: line-through;
}
.cal-day--today {
  outline: 2px solid var(--third-color);
  outline-offset: -2px;
  font-weight: 700;
  color: var(--third-color);
}
.cal-day--today.cal-day--available {
  background: rgba(73, 80, 66, 0.14);
}
.cal-legend {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cal-legend__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  color: #7a7870;
}
.cal-legend__dot {
  width: 10px;
  height: 10px;
  display: block;
  flex-shrink: 0;
}
.cal-legend__dot--available {
  background: rgba(73, 80, 66, 0.4);
}
.cal-legend__dot--busy {
  background: rgba(3, 2, 2, 0.15);
}
.cal-legend__dot--today {
  outline: 2px solid var(--third-color);
  outline-offset: 1px;
}

/* Bio + tags */
.profile-bio {
  font-size: var(--normal-font-size);
  color: #5a5854;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.profile-tag {
  font-size: 1.15rem;
  font-weight: 500;
  border: 1px solid #d5d4ce;
  color: var(--third-color);
  padding: 0.4rem 1.2rem;
  background: var(--primary-color);
}

/* Details list */
.profile-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.profile-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--normal-font-size);
  color: #5a5854;
}
.profile-details li i {
  font-size: 1.7rem;
  color: var(--third-color);
  flex-shrink: 0;
}

/* Listings swiper section */
.profile-listings {
  padding: 7rem 0 9rem;
  background: #fff;
}
.profile-swiper-wrap {
  position: relative;
  margin-top: 4rem;
}
.profile-swiper .swiper-slide {
  height: auto;
}
.profile-swiper .job-card {
  height: 100%;
  box-sizing: border-box;
}
.profile-swiper-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
}
.profile-swiper-prev,
.profile-swiper-next {
  width: 44px;
  height: 44px;
  border: 1px solid var(--secondary-color);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary-color);
  transition: all 250ms ease;
}
.profile-swiper-prev:hover,
.profile-swiper-next:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .profile-body__grid {
    grid-template-columns: 1fr;
  }
  .profile-col-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .profile-col-side .profile-card {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .profile-hero__inner {
    gap: 3rem;
  }
  .profile-hero__actions {
    width: 100%;
  }
  .profile-col-side {
    grid-template-columns: 1fr;
  }
  .profile-hero__name {
    font-size: 3rem;
  }
}
@media (max-width: 560px) {
  .profile-hero__photo {
    width: 90px;
    height: 90px;
  }
  .profile-hero__stats {
    gap: 1.5rem;
  }
  .profile-hero__stat strong {
    font-size: 1.6rem;
  }
}

/*=============== HEADER USER MENU ===============*/
.header__user {
  position: relative;
  flex-shrink: 0;
}
.header__user-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__user-avatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  display: block;
  border: 2px solid var(--secondary-color);
}
.header__user-chevron {
  font-size: 1.8rem;
  color: var(--secondary-color);
  transition: transform 250ms ease;
  display: flex;
  align-items: center;
}
.header__user-dropdown {
  position: absolute;
  top: calc(100% + 1.4rem);
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #e4e2db;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}
.header__user-dropdown._open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.user-dropdown__profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 2rem;
}
.user-dropdown__avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  flex-shrink: 0;
}
.user-dropdown__name {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.2;
}
.user-dropdown__role {
  display: block;
  font-size: 1.1rem;
  color: #9e9c96;
  margin-top: 0.2rem;
}
.user-dropdown__divider {
  height: 1px;
  background: #eeece6;
  margin: 0;
}
.user-dropdown__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 2rem;
  font-size: 1.3rem;
  color: var(--secondary-color);
  text-decoration: none;
  transition: background 180ms ease;
}
.user-dropdown__item i {
  font-size: 1.6rem;
  color: #888480;
  flex-shrink: 0;
}
.user-dropdown__item:hover {
  background: var(--primary-color);
}
.user-dropdown__item:hover i {
  color: var(--third-color);
}
.user-dropdown__item--logout {
  color: #c0392b;
}
.user-dropdown__item--logout i {
  color: #c0392b;
}
.user-dropdown__item--logout:hover {
  background: #fdf2f2;
}

/* Toggle switch */
.user-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2rem;
  cursor: pointer;
}
.user-dropdown__toggle-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  color: var(--secondary-color);
}
.user-dropdown__toggle-label i {
  font-size: 1.6rem;
  color: #888480;
}
.user-toggle {
  position: relative;
  flex-shrink: 0;
}
.user-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.user-toggle__track {
  display: block;
  width: 38px;
  height: 22px;
  background: #d5d4ce;
  border-radius: 11px;
  position: relative;
  transition: background 220ms ease;
  cursor: pointer;
}
.user-toggle__track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 220ms ease;
}
.user-toggle input:checked ~ .user-toggle__track {
  background: var(--third-color);
}
.user-toggle input:checked ~ .user-toggle__track::after {
  transform: translateX(16px);
}

/* ── Registration Wizard ──────────────────────────────────────────────── */
.reg-section {
  padding: 4rem 0 8rem;
}
.reg-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 2rem;
}

.reg-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4.5rem;
  padding: 0 1rem;
}
.reg-progress::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: #ddd;
  z-index: 0;
}
.reg-progress__line {
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  height: 2px;
  background: var(--third-color);
  z-index: 1;
  width: 0%;
  transition: width 0.4s ease;
}
.reg-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
  flex: 1;
}
.reg-progress__dot {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #bbb;
  transition: all 0.3s;
  font-family: var(--body-font);
}
.reg-progress__step.is-active .reg-progress__dot {
  background: var(--third-color);
  border-color: var(--third-color);
  color: white;
}
.reg-progress__step.is-done .reg-progress__dot {
  background: var(--third-color);
  border-color: var(--third-color);
  color: white;
  font-size: 0;
}
.reg-progress__step.is-done .reg-progress__dot::after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 0.65rem;
  border-left: 2.5px solid white;
  border-bottom: 2.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.reg-progress__label {
  font-size: 1.05rem;
  color: #bbb;
  text-align: center;
  line-height: 1.3;
  max-width: 7rem;
  font-family: var(--body-font);
}
.reg-progress__step.is-active .reg-progress__label {
  color: var(--third-color);
  font-weight: 600;
}
.reg-progress__step.is-done .reg-progress__label {
  color: var(--third-color);
}

.reg-step {
  display: none;
}
.reg-step.is-active {
  display: block;
  animation: rStepIn 0.3s ease;
}
@keyframes rStepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-counter {
  display: none;
  font-size: 1.2rem;
  color: #888;
  text-align: center;
  margin-bottom: 2rem;
}

.reg-card {
  background: white;
  padding: 3.5rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}
.reg-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: var(--body-font);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reg-card__title i {
  color: var(--third-color);
  font-size: 2rem;
}
.reg-card__subtitle {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.form-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field label,
.form-field .f-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  font-family: var(--body-font);
}
.form-field label .req {
  color: var(--third-color);
}
.form-field input,
.form-field select,
.form-field textarea,
.lang-row select {
  padding: 1.1rem 1.4rem;
  border: 1.5px solid #e2e2e2;
  font-size: 1.4rem;
  font-family: var(--body-font);
  color: var(--secondary-color);
  background: #fafafa;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.lang-row select:focus {
  border-color: var(--third-color);
  background: white;
  outline: none;
}
.form-field textarea {
  resize: vertical;
  min-height: 10rem;
}
.form-field select,
.lang-row select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23495042' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.5rem;
}
.field-hint {
  font-size: 1.1rem;
  color: #aaa;
  margin-top: 0.3rem;
}

.photo-upload-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
}
.photo-upload {
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background: #f7f7f5;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color 0.2s;
  position: relative;
}
.photo-upload:hover {
  border-color: var(--third-color);
}
.photo-upload i {
  font-size: 2.4rem;
  color: #bbb;
}
.photo-upload span {
  font-size: 1rem;
  color: #bbb;
  margin-top: 0.4rem;
  text-align: center;
  padding: 0 0.8rem;
}
.photo-upload input[type='file'] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
#photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.photo-upload-info h4 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.photo-upload-info p {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.6;
}

.pill-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pill-wrap .f-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
}
.pill-toggle {
  display: flex;
  border: 1.5px solid #e2e2e2;
  overflow: hidden;
  width: fit-content;
}
.pill-toggle input[type='radio'] {
  display: none;
}
.pill-toggle label {
  padding: 0.85rem 2.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  background: #fafafa;
  color: #777;
  transition: all 0.18s;
  font-family: var(--body-font);
}
.pill-toggle label:first-of-type {
  border-right: 1.5px solid #e2e2e2;
}
.pill-toggle input[type='radio']:checked + label {
  background: var(--secondary-color);
  color: white;
  font-weight: 600;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.specialty-card {
  border: 1.5px solid #e8e8e8;
  padding: 1.8rem 1.2rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  user-select: none;
}
.specialty-card:hover {
  border-color: var(--third-color);
  background: #f0f2ee;
}
.specialty-card.is-selected {
  border-color: var(--third-color);
  background: #edf0e9;
  box-shadow: 0 0 0 3px rgba(73, 80, 66, 0.1);
}
.specialty-card i {
  font-size: 2.4rem;
  color: #bbb;
  transition: color 0.18s;
}
.specialty-card.is-selected i {
  color: var(--third-color);
}
.specialty-card span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  line-height: 1.3;
}
.specialty-card.is-selected span {
  color: var(--third-color);
}
.specialty-card input[type='checkbox'] {
  display: none;
}
.sp-check {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}
.specialty-card.is-selected .sp-check {
  background: var(--third-color);
  border-color: var(--third-color);
}
.specialty-card.is-selected .sp-check::after {
  content: '';
  display: block;
  width: 0.9rem;
  height: 0.55rem;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.srv-sec {
  display: none;
}
.srv-sec.is-visible {
  display: block;
  animation: rStepIn 0.25s ease;
}
.srv-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--third-color);
  margin: 2.2rem 0 1.4rem;
  padding: 0.9rem 1.4rem;
  background: #edf0e9;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--body-font);
}
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.4rem;
}
.check-row label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  cursor: pointer;
}
.check-row input[type='checkbox'] {
  width: 1.5rem;
  height: 1.5rem;
  accent-color: var(--third-color);
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.skill-item {
  border: 1.5px solid #e8e8e8;
  padding: 1.4rem 1rem;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  background: #fafafa;
  user-select: none;
}
.skill-item:hover {
  border-color: var(--third-color);
}
.skill-item.is-checked {
  border-color: var(--third-color);
  background: #edf0e9;
}
.skill-item i {
  font-size: 2rem;
  color: #bbb;
  transition: color 0.18s;
}
.skill-item.is-checked i {
  color: var(--third-color);
}
.skill-item span {
  font-size: 1.15rem;
  font-weight: 600;
  color: #777;
  line-height: 1.3;
}
.skill-item.is-checked span {
  color: var(--third-color);
}
.skill-item input {
  display: none;
}

.toggle-sw {
  position: relative;
  width: 4.6rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.toggle-sw input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-sw__t {
  position: absolute;
  inset: 0;
  background: #ddd;
  cursor: pointer;
  transition: background 0.25s;
}
.toggle-sw__t::before {
  content: '';
  position: absolute;
  width: 1.9rem;
  height: 1.9rem;
  background: white;
  top: 0.3rem;
  left: 0.3rem;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.toggle-sw input:checked + .toggle-sw__t {
  background: var(--third-color);
}
.toggle-sw input:checked + .toggle-sw__t::before {
  transform: translateX(2.1rem);
}

.mobility-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mob-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
}
.mob-item__lbl {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.35rem;
  font-weight: 500;
  color: #444;
}
.mob-item__lbl i {
  font-size: 1.9rem;
  color: var(--third-color);
}

.avail-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.4rem;
}
.avail-table th {
  padding: 0.6rem 0.3rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  font-family: var(--body-font);
}
.avail-table th:first-child {
  text-align: left;
  min-width: 8rem;
}
.avail-table td {
  text-align: center;
  padding: 0.2rem 0.3rem;
}
.avail-table td:first-child {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
}
.avail-cell {
  width: 3rem;
  height: 3rem;
  border: 1.5px solid #e0e0e0;
  background: #fafafa;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.avail-cell:hover {
  border-color: var(--third-color);
}
.avail-cell.on {
  background: var(--third-color);
  border-color: var(--third-color);
}
.avail-cell.on::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 0.7rem;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.avail-extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.avail-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
}
.avail-extra label:first-child {
  font-size: 1.35rem;
  font-weight: 500;
  color: #444;
}

.rate-wrap {
  position: relative;
}
.rate-wrap .eur {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--third-color);
  pointer-events: none;
}
.rate-wrap input {
  padding-left: 3rem !important;
}
.rate-neg {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.6rem;
}
.rate-neg input[type='checkbox'] {
  width: 1.5rem;
  height: 1.5rem;
  accent-color: var(--third-color);
  cursor: pointer;
}
.rate-neg span {
  font-size: 1.2rem;
  color: #888;
}

.dyn-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.dyn-entry {
  border: 1.5px solid #e8e8e8;
  padding: 2rem;
  background: #fafafa;
  position: relative;
}
.dyn-remove {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #fce8e8;
  color: #c0392b;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.18s;
}
.dyn-remove:hover {
  background: #f9c8c8;
}
.add-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.8rem;
  border: 1.5px dashed #bbc;
  background: transparent;
  color: var(--third-color);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--body-font);
  width: 100%;
  justify-content: center;
}
.add-btn:hover {
  border-color: var(--third-color);
  background: #edf0e9;
}
.add-btn i {
  font-size: 1.6rem;
}

.lang-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
}
.lang-row .f-sel {
  flex: 2;
}
.lang-row .f-lvl {
  flex: 1;
}
.lang-row .lang-rm {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fce8e8;
  color: #c0392b;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  align-self: flex-end;
  margin-bottom: 0.1rem;
}

.cur-job {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.cur-job input {
  width: 1.5rem;
  height: 1.5rem;
  accent-color: var(--third-color);
  cursor: pointer;
}
.cur-job label {
  font-size: 1.2rem;
  color: #777;
  cursor: pointer;
}

.work-areas-select {
  min-height: 13rem;
  padding: 1rem;
  border: 1.5px solid #e2e2e2;
  font-size: 1.35rem;
  font-family: var(--body-font);
  background: #fafafa;
  width: 100%;
}

.sum-card {
  border: 1.5px solid #e0e0e0;
  padding: 2rem;
  background: #f8f8f5;
  margin-bottom: 2rem;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.3rem;
}
.sum-row:last-child {
  border-bottom: none;
}
.sum-key {
  font-weight: 700;
  color: #666;
  min-width: 14rem;
}
.sum-val {
  color: var(--secondary-color);
  text-align: right;
  flex: 1;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.terms-row input[type='checkbox'] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--third-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
  cursor: pointer;
}
.terms-row label {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.7;
  cursor: pointer;
}
.terms-row a {
  color: var(--third-color);
  text-decoration: underline;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.step-nav--end {
  justify-content: flex-end;
}
.btn-prev {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.2rem;
  border: 1.5px solid #ddd;
  background: transparent;
  color: #777;
  font-size: 1.35rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--body-font);
}
.btn-prev:hover {
  border-color: var(--third-color);
  color: var(--third-color);
}
.btn-next {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.6rem;
  background: var(--secondary-color);
  color: white;
  border: none;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  font-family: var(--body-font);
}
.btn-next:hover {
  background: var(--third-color);
}
.btn-submit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3.5rem;
  background: var(--third-color);
  color: white;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--body-font);
}
.btn-submit:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(73, 80, 66, 0.28);
}

.reg-submit-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.reg-submit-success.is-visible {
  display: block;
}
.reg-submit-success__icon {
  width: 7rem;
  height: 7rem;
  background: #edf0e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--third-color);
  font-size: 3.2rem;
}
.reg-submit-success h3 {
  font-size: 2.2rem;
  font-family: var(--second-font);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.reg-submit-success p {
  font-size: 1.4rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.reg-submit-success a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.8rem;
  background: var(--third-color);
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .reg-card {
    padding: 2.5rem 1.8rem;
  }
  .form-grid,
  .form-grid--3 {
    grid-template-columns: 1fr;
  }
  .specialty-grid {
    grid-template-columns: 1fr 1fr;
  }
  .skill-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reg-progress__label {
    display: none;
  }
  .step-counter {
    display: block;
  }
  .photo-upload-wrap {
    flex-direction: column;
  }
  .lang-row {
    flex-wrap: wrap;
  }
  .avail-cell {
    width: 2.6rem;
    height: 2.6rem;
  }
  .avail-table th {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .reg-container {
    padding: 0 1.2rem;
  }
  .avail-cell {
    width: 2.2rem;
    height: 2.2rem;
  }
  .btn-submit {
    padding: 1.2rem 2.2rem;
    font-size: 1.35rem;
  }
}

/* ── Profile View ─────────────────────────────────────────────────────── */
.pv-back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: var(--third-color);
  text-decoration: none;
  padding: 2rem 0 0.4rem;
}
.pv-back:hover { text-decoration: underline; }

.pv-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pv-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  background: #fff;
  border: 1.5px solid #ccc;
  font-size: 1.3rem;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  white-space: nowrap;
}
.pv-action-btn:hover { border-color: var(--secondary-color); }
.pv-action-btn._saved { background: var(--secondary-color); color: #fff; border-color: var(--secondary-color); }

.timeline { display: flex; flex-direction: column; }
.timeline__item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0 1.4rem;
  padding-bottom: 2.4rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot-wrap { display: flex; flex-direction: column; align-items: center; }
.timeline__dot {
  width: 1.1rem;
  height: 1.1rem;
  background: var(--third-color);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.timeline__line { width: 2px; flex: 1; background: #e0e0da; margin-top: 0.5rem; }
.timeline__item:last-child .timeline__line { display: none; }
.timeline__title { font-size: 1.5rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 0.2rem; }
.timeline__sub { font-size: 1.3rem; color: var(--third-color); font-weight: 600; margin-bottom: 0.2rem; }
.timeline__period {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.timeline__badge {
  background: #e8f0e0;
  color: var(--third-color);
  padding: 0.15rem 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.timeline__desc { font-size: 1.35rem; color: #555; line-height: 1.65; }

.specialty-pills { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.specialty-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  background: var(--third-color);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.specialty-pill i { font-size: 1.5rem; }

.service-group { margin-bottom: 2rem; }
.service-group:last-child { margin-bottom: 0; }
.service-group__label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.service-list { display: flex; flex-direction: column; gap: 0.9rem; }
.service-item { display: flex; align-items: center; gap: 1rem; font-size: 1.4rem; color: var(--secondary-color); }
.service-item__icon { font-size: 1.6rem; color: var(--third-color); width: 2rem; flex-shrink: 0; }
.service-item__check { margin-left: auto; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 0.3rem; }
.service-item__check--yes { color: #3a7a3a; }
.service-item__check--no  { color: #bbb; }

.skill-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: #f0f0eb;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--secondary-color);
}
.skill-chip i { font-size: 1.5rem; color: var(--third-color); }

.lang-display-list { display: flex; flex-direction: column; gap: 1.2rem; }
.lang-display-row { display: flex; align-items: center; gap: 1.2rem; }
.lang-display-row__name { font-size: 1.4rem; font-weight: 600; color: var(--secondary-color); width: 9rem; flex-shrink: 0; }
.lang-display-row__bar { flex: 1; height: 5px; background: #e0e0da; }
.lang-display-row__fill { height: 100%; background: var(--third-color); }
.lang-display-row__level { font-size: 1.2rem; color: #888; width: 7rem; text-align: right; flex-shrink: 0; }

.avail-week-grid {
  display: grid;
  grid-template-columns: 3.2rem repeat(3, 1fr);
  gap: 2px;
}
.avail-week-grid__hdr {
  font-size: 1.05rem;
  font-weight: 700;
  color: #aaa;
  text-align: center;
  padding: 0.3rem 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.avail-week-grid__day { font-size: 1.2rem; font-weight: 600; color: var(--secondary-color); display: flex; align-items: center; }
.avail-wcell { background: #f0f0eb; height: 2.4rem; display: flex; align-items: center; justify-content: center; }
.avail-wcell--on { background: var(--third-color); }
.avail-wcell--on i { font-size: 1.1rem; color: #fff; }

.contact-card {
  background: #fff;
  border: 1.5px solid #e0e0da;
  padding: 2.4rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 9rem;
}
.contact-card__rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e0e0da;
  margin-bottom: 2rem;
}
.contact-card__rate { background: #fff; padding: 1.2rem 1rem; text-align: center; }
.contact-card__rate-val {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  font-family: var(--second-font);
  color: var(--secondary-color);
  line-height: 1.1;
}
.contact-card__rate-lbl { display: block; font-size: 1.1rem; color: #999; margin-top: 0.2rem; }
.contact-card__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.3rem;
  background: var(--secondary-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--body-font);
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: opacity 0.18s;
  box-sizing: border-box;
}
.contact-card__btn-primary:hover { opacity: 0.85; }
.contact-card__btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.3rem;
  background: transparent;
  border: 1.5px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--body-font);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  box-sizing: border-box;
}
.contact-card__btn-secondary:hover { background: var(--secondary-color); color: #fff; }
.contact-card__divider { height: 1px; background: #e8e8e3; margin: 1.8rem 0; }
.contact-card__facts { display: flex; flex-direction: column; gap: 1rem; }
.contact-card__fact { display: flex; align-items: center; gap: 0.9rem; font-size: 1.3rem; color: var(--secondary-color); }
.contact-card__fact i { font-size: 1.5rem; color: var(--third-color); width: 1.8rem; flex-shrink: 0; }
.contact-card__fact-chk { margin-left: auto; font-size: 1.3rem; font-weight: 700; }
.contact-card__fact-chk--yes { color: #3a7a3a; }
.contact-card__fact-chk--no  { color: #ccc; }
.contact-card__report {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 1.4rem;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--body-font);
}
.contact-card__report:hover { color: #888; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e3;
}
.reviews-summary__score { font-size: 4rem; font-weight: 800; font-family: var(--second-font); color: var(--secondary-color); line-height: 1; }
.reviews-summary__stars { color: #e8a020; font-size: 1.8rem; margin-bottom: 0.3rem; }
.reviews-summary__count { font-size: 1.3rem; color: #888; }
.reviews-list { display: flex; flex-direction: column; gap: 0; }
.review-item { border-bottom: 1px solid #e8e8e3; padding: 2rem 0; }
.review-item:first-child { padding-top: 0; }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-item__header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.8rem; }
.review-item__avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--third-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-item__name { font-size: 1.4rem; font-weight: 700; color: var(--secondary-color); }
.review-item__date { font-size: 1.2rem; color: #aaa; }
.review-item__stars { margin-left: auto; color: #e8a020; font-size: 1.3rem; }
.review-item__text { font-size: 1.4rem; color: #444; line-height: 1.65; }
.pv-show-more {
  display: block;
  width: 100%;
  padding: 1.2rem;
  border: 1.5px solid #ddd;
  background: transparent;
  font-size: 1.4rem;
  font-family: var(--body-font);
  color: var(--secondary-color);
  cursor: pointer;
  margin-top: 2rem;
  text-align: center;
  transition: border-color 0.18s;
}
.pv-show-more:hover { border-color: var(--secondary-color); }
.pv-sub-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1.2rem;
}

@media (max-width: 900px) {
  .contact-card { position: static; }
  .pv-hero-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ── Edit Profile ──────────────────────────────────────────────────────── */
.ep-summary {
  background: var(--secondary-color);
  padding: 3.2rem 0;
}
.ep-summary__inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.ep-summary__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.ep-summary__photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
}
.ep-summary__photo-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--third-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}
#ep-photo-input { display: none; }
.ep-summary__info { flex: 1; }
.ep-summary__name {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--second-font);
  color: #fff;
  margin-bottom: 0.3rem;
}
.ep-summary__meta {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}
.ep-summary__pct { font-size: 1.3rem; color: rgba(255,255,255,0.8); display: block; margin-bottom: 0.5rem; }
.ep-summary__pct strong { color: #fff; }
.ep-complete-bar {
  width: 24rem;
  max-width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
}
.ep-complete-fill { height: 100%; background: #a8c084; }
.ep-summary__actions { flex-shrink: 0; }
.ep-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--body-font);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.ep-view-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.ep-tabs-wrap {
  background: #fff;
  border-bottom: 1.5px solid #e0e0da;
  position: sticky;
  top: 0;
  z-index: 99;
}
.ep-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.ep-tabs::-webkit-scrollbar { display: none; }
.ep-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.6rem 2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.35rem;
  font-weight: 600;
  font-family: var(--body-font);
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  margin-bottom: -1.5px;
}
.ep-tab i { font-size: 1.5rem; }
.ep-tab:hover { color: var(--secondary-color); }
.ep-tab.is-active { color: var(--third-color); border-bottom-color: var(--third-color); }

.ep-content { padding: 3.2rem 0 6rem; }
.ep-panel { display: none; }
.ep-panel.is-active { display: block; }

.ep-save-bar {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding: 2rem 0 0;
  border-top: 1.5px solid #e0e0da;
}
.ep-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.4rem;
  background: var(--secondary-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--body-font);
  border: none;
  cursor: pointer;
  transition: opacity 0.18s;
}
.ep-save-btn:hover { opacity: 0.85; }
.ep-save-msg {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: #3a7a3a;
  font-weight: 600;
}
.ep-save-msg.is-visible { display: flex; }
.ep-save-msg i { font-size: 1.5rem; }

.ep-danger-zone { border-color: #f5c6c2; }
.ep-delete-btn {
  padding: 1rem 2rem;
  background: #c0392b;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--body-font);
  border: none;
  cursor: pointer;
  transition: opacity 0.18s;
}
.ep-delete-btn:hover { opacity: 0.85; }

.srv-sec { display: none; margin-top: 2rem; }
.srv-sec.is-visible { display: block; }
.srv-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.6rem;
}
.srv-title i { font-size: 1.7rem; color: var(--third-color); }

.avail-extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.avail-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: #f8f8f5;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.rate-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #d0d0ca;
  background: #fff;
}
.rate-wrap .eur {
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--third-color);
  border-right: 1.5px solid #d0d0ca;
  background: #f8f8f5;
}
.rate-wrap input {
  flex: 1;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
  font-family: var(--body-font);
  background: transparent;
}
.rate-wrap input:focus { outline: none; }
.rate-neg {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  font-size: 1.3rem;
  color: #666;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.check-row label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: var(--secondary-color);
  cursor: pointer;
}

@media (max-width: 768px) {
  .ep-summary__inner { flex-wrap: wrap; }
  .ep-summary__actions { width: 100%; }
  .ep-complete-bar { width: 100%; }
  .ep-tab span { display: none; }
  .ep-tab { padding: 1.4rem; }
}

/* ── Utilities ─────────────────────────────────────────────────────────── */
/* Layout helpers */
.form-field--end   { align-self: end; }
.form-field--mb    { margin-bottom: 2.4rem; }
.avail-table-wrap  { overflow-x: auto; }
.profile-card--mb  { margin-bottom: 2rem; }
.ep-panel .reg-card + .reg-card { margin-top: 2.4rem; }

/* JS template elements — hidden until cloned by JS */
.js-template { display: none !important; }

/* Pricing page */
.plans-hidden { display: none; }

/* Logged-in header: active dropdown item */
.user-dropdown__item--current { font-weight: 700; color: var(--third-color); }

/* Profile view */
.pv-verified-icon   { color: var(--third-color); margin-right: .4rem; }
.skill-chips        { margin-bottom: 2.4rem; }
.review-item__body  { flex: 1; }
.review-item__avatar--brown { background: #8b6a4a; }
.review-item__avatar--green { background: #2a5a3a; }

/* Registration / edit-profile shared */
.spec-sub       { font-weight: 400; color: #aaa; font-size: 1.05rem; }
.field-label-sub { font-weight: 400; color: #aaa; }
.avail-hdr-sub  { color: #bbb; font-size: 1rem; }
.dyn-list textarea { min-height: 7rem; }
.srv-sec .check-row { margin-top: 0.6rem; }
.ep-danger-zone .reg-card__title { color: #c0392b; }



.reg-card.ep-danger-zone{
  display: none;
}