@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --primary-color: #ff4fa3;
  --primary-dark: #e43c8d;
  --secondary-color: #ff7a18;
  --accent-cyan: #2dd4ff;
  --accent-lime: #b8ff4d;
  --red-color: #ff5a6b;
  --white: #fff;
  --black: #081120;
  --light-black: #111827;
  --grey: #667085;
  --muted: #bebecc;
  --bg-main: #f7f8fc;
  --bg-surface: rgba(255, 255, 255, 0.92);
  --bg-dark: #eef4ff;
  --bg-dark-2: #fff4f8;
  --bg-soft: #eef4ff;
  --line-soft: rgba(8, 17, 32, 0.1);
  --line-strong: rgba(8, 17, 32, 0.08);
  --section-space: clamp(2.8rem, 6vw, 5.8rem);
  --radius-soft: 18px;
  --radius-large: 28px;
  --shadow-soft: 0 18px 50px rgba(8, 17, 32, 0.08);
  --shadow-hover: 0 24px 70px rgba(8, 17, 32, 0.14);
  --shadow-glow: 0 18px 45px rgba(255, 79, 163, 0.2);
  --transition-base: 220ms ease;
  --transition-slow: 420ms ease;
}

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

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

::-webkit-scrollbar {}

::-webkit-scrollbar-button {}

::-webkit-scrollbar-thumb {}

::-webkit-scrollbar-track {}

::-webkit-scrollbar-track-piece {}

::-webkit-scrollbar-corner {}

::-webkit-resizer {}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Manrope", sans-serif;
  color: var(--light-black);
  background:
    radial-gradient(circle at top left,
      rgba(45, 212, 255, 0.12),
      transparent 22%),
    radial-gradient(circle at top right,
      rgba(255, 79, 163, 0.12),
      transparent 26%),
    var(--bg-main);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

input::placeholder {
  color: var(--muted) !important;
}

.page__main .section-wrapper {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.page__main .section-wrapper.hero__section {
  padding-top: 0;
  padding-bottom: 0;
}

.section__title h1,
.section__title h2,
.section__title h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section__title p {
  color: var(--grey);
  line-height: 1.75;
}

.text__primary {
  color: var(--primary-color);
}

.text__secondary {
  color: var(--secondary-color);
}

.text__black {
  color: var(--black);
}

.text__black_light {
  color: var(--light-black);
}

.text__grey {
  color: var(--grey);
}

.bg__primary {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
}

.bg__secondary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lime));
}

button[type="button"]:focus,
input:focus,
textarea:focus,
select:focus,
button[type="submit"]:focus {
  box-shadow: none;
  outline: none;
}

.bold-100 {
  font-weight: 100 !important;
}

.bold-200 {
  font-weight: 200 !important;
}

.bold-300 {
  font-weight: 300 !important;
}

.bold-400 {
  font-weight: 400 !important;
}

.bold-500 {
  font-weight: 500 !important;
}

.bold-600 {
  font-weight: 600 !important;
}

.bold-700 {
  font-weight: 700 !important;
}

.bold-800 {
  font-weight: 800 !important;
}

.bold-900 {
  font-weight: 900 !important;
}

.btn__primary {
  position: relative;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
  box-shadow: var(--shadow-glow);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    opacity var(--transition-base);
  line-height: 48px;
  padding: 0 1.4rem;
  font-weight: 700;
}

.btn__primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 79, 163, 0.25);
}

.btn_outline__pri {
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 163, 0.28);
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary-color);
  transition: all var(--transition-base);
}

.btn_outline__pri:hover {
  background: var(--primary-color);
  color: var(--white);
}

.border-1 {
  border-width: 1px;
  border-style: solid;
}

.border__primary {
  border-color: var(--primary-color);
}

.border__secondary {
  border-color: var(--secondary-color);
}

.loader__container {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 8px solid rgba(255, 79, 163, 0.2);
  border-right-color: var(--primary-color);
  animation: s2 0.7s infinite linear;
}

@keyframes s2 {
  to {
    transform: rotate(1turn);
  }
}

/* Global Shell */
.site__header {
  position: relative;
  z-index: 20;
}

.site__announcement {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.92),
      rgba(238, 244, 255, 0.96) 45%,
      rgba(255, 244, 248, 0.94));
  color: var(--light-black);
}

.site__announcement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 79, 163, 0.16),
      transparent 35%,
      rgba(45, 212, 255, 0.12));
  pointer-events: none;
}

.site__announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.9rem;
}

.site__announcement-copy,
.site__announcement-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site__announcement-links a {
  color: var(--light-black);
  font-weight: 700;
  transition: color var(--transition-base);
}

.site__announcement-links a:hover {
  color: var(--primary-color);
}

.site__announce-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg,
      rgba(255, 79, 163, 0.24),
      rgba(255, 122, 24, 0.24));
  border: 1px solid rgba(255, 79, 163, 0.16);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.site__nav-wrap {
  padding: 1rem 0 0;
}

.site__nav-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.site__nav-shell .navbar-collapse {
  min-width: 0;
}

.site__nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 79, 163, 0.08),
      rgba(45, 212, 255, 0.08));
  pointer-events: none;
}

.site__brand,
.site__brand:hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--black);
}

.site__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.site__brand-copy {
  display: flex;
  flex-direction: column;
}

.site__brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.site__brand-tag {
  font-size: 0.78rem;
  color: var(--grey);
}

.site__menu {
  position: relative;
  min-width: 0;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.site__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem !important;
  border-radius: 999px;
  color: var(--light-black);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    transform var(--transition-base);
}

.site__menu-link:hover,
.site__menu-link.active {
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.site__platform-icon {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.site__dropdown-menu {
  min-width: 280px;
  padding: 1rem;
  border: 1px solid rgba(8, 17, 32, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(8, 17, 32, 0.14);
}

.site__dropdown-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.site__dropdown-title {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.site__dropdown-caption {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey);
}

.site__dropdown-grid {
  display: grid;
  gap: 0.55rem;
}

.site__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(255, 79, 163, 0.06),
      rgba(45, 212, 255, 0.08));
  color: var(--light-black);
  font-weight: 700;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    color var(--transition-base);
}

.site__dropdown-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg,
      rgba(255, 79, 163, 0.14),
      rgba(45, 212, 255, 0.14));
  color: var(--black);
}

.site__utility {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 0.7rem;
  margin-top: 1rem;
}

.site__utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--light-black);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}

.site__utility-link:hover {
  background: rgba(8, 17, 32, 0.05);
  color: var(--black);
}

.site__cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(8, 17, 32, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  color: var(--black);
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.site__cart-link:hover,
.site__cart-link.active {
  transform: translateY(-1px);
  border-color: rgba(255, 79, 163, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(8, 17, 32, 0.1);
  color: var(--black);
}

.site__cart-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(8, 17, 32, 0.04);
  border: 1px solid rgba(8, 17, 32, 0.06);
  color: var(--black);
}

.site__cart-link:hover .site__cart-icon,
.site__cart-link.active .site__cart-icon {
  background: linear-gradient(135deg,
      rgba(255, 79, 163, 0.14),
      rgba(45, 212, 255, 0.14));
  border-color: rgba(255, 79, 163, 0.14);
  color: var(--primary-color);
}

.site__cart-copy {
  line-height: 1;
}

.site__cart-badge {
  position: absolute;
  top: -0.28rem;
  right: -0.28rem;
  display: inline-grid;
  place-items: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(8, 17, 32, 0.14);
}

.site__nav-cta {
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.site__nav-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 79, 163, 0.24);
}

.site__nav-toggle {
  position: relative;
  z-index: 2;
  padding: 0.5rem;
  border: none;
  box-shadow: none !important;
}

.site__nav-toggle-line {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--black);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.site__nav-toggle[aria-expanded="true"] .site__nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site__nav-toggle[aria-expanded="true"] .site__nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site__nav-toggle[aria-expanded="true"] .site__nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Shared components for later phases */
.shell-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-soft);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.shell-card--dark {
  border-color: var(--line-strong);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.96),
      rgba(245, 248, 255, 0.94));
  color: var(--light-black);
}

.shell-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.12);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shell-chip,
.site__trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ######## Index Page ######## */
.section-wrapper.hero__section {
  position: relative;
  min-height: 400px;
  /* background-image: url("../images/Mask-Group-1.webp"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero__form {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
}

.main__form {
  padding: 30px;
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.main__form .form__controller select {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border: 1px solid rgba(8, 17, 32, 0.08);
  border-radius: 14px;
  font-size: 14px;
  color: var(--light-black);
  box-shadow: none;
}

.main__form .form__controller select option {
  transition: all var(--transition-base);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}

.main__form .form__controller button[type="submit"] {
  padding: 12px 25px;
  border-radius: 14px;
  font-size: 14px;
  transition: all var(--transition-base);
  width: 100%;
}

.main__form .form__controller button[type="submit"]:hover {
  color: var(--white);
}

.services_all-services {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.services__select-single {
  margin-bottom: 10px;
}

.ss__button {
  padding: 0;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  border: 1px solid rgba(8, 17, 32, 0.08);
  border-radius: 18px;
  transition: all var(--transition-base);
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.ss__button:hover {
  border-color: rgba(255, 79, 163, 0.26);
  box-shadow: var(--shadow-hover);
}

.ss__button .ss__btn-img {
  margin: 10px 25px;
}

.ss__button .ss__btn-label {
  margin: 0 auto;
  color: var(--grey);
  font-size: 14px;
  text-transform: capitalize;
}

.ss__button .service__btn-divider {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(8, 17, 32, 0.08);
  margin-top: 10px;
}

.ss__btn-bLabel {
  position: relative;
  padding: 8px 0;
  border-radius: 0 0 17px 17px;
  transition: all var(--transition-base);
  color: var(--primary-color);
  width: 100%;
  font-weight: 700;
}

.ss__button:hover .ss__btn-bLabel {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
}

.feature__content {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  transition: all var(--transition-base);
  border-radius: var(--radius-soft);
}

.feature__content img {
  margin-bottom: 8px;
}

.features__col:hover .feature__content {
  box-shadow: var(--shadow-hover);
}

.faqs_col .accordion .accordion-item:not(nth-of-last) {
  margin-bottom: 10px;
  border: 1px solid rgba(255, 79, 163, 0.25);
  border-radius: 16px !important;
}

.faqs_col .accordion-button.collapsed::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 51px;
  height: 100%;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 407.437 407.437'%3E%3Cpolygon points='386.258,91.567 203.718,273.512 21.179,91.567 0,112.815 203.718,315.87 407.437,112.815'/%3E%3C/svg%3E");
  background-color: var(--primary-color);
  border-radius: 0 16px 16px 0 !important;
}

.faqs_col .accordion-button {
  border-radius: 16px !important;
  font-weight: 600;
  color: var(--primary-color);
}

.review__slide {
  position: relative;
  display: block;
  padding: 20px 40px;
  box-shadow: var(--shadow-soft);
  margin: 20px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.88);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review__slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review__slide .rev__client {
  display: flex;
  align-items: center;
  justify-content: start;
}

.review__slide .rev__client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rev__client-img img {
  width: 100%;
}

.rev__col-slides .carousel-control-next,
.rev__col-slides .carousel-control-prev {
  top: 50%;
  width: auto;
  transform: translateY(-50%);
  height: auto;
  background-color: var(--primary-color);
  bottom: unset;
}

.form__field input,
.form__field textarea {
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid rgba(8, 17, 32, 0.12);
  border-radius: 14px;
  background-color: var(--white);
}

.contact__form-msg textarea {
  height: 120px;
}

.home__contact-submit {
  padding: 8px 30px;
  border-radius: 999px;
  border: 1px solid var(--primary-color);
  line-height: 1.5;
}

.home__contact-submit:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.contact__item .list-icon {
  padding: 10px;
  border: 1px solid rgba(255, 79, 163, 0.22);
  border-radius: 12px;
  line-height: 1;
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(255, 79, 163, 0.12);
}

/* Modern Services Modal Styling */
.services-modal {
  border: none;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(45, 212, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  box-shadow: 0 32px 64px rgba(8, 17, 32, 0.12);
  overflow: hidden;
}

.services-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.08), transparent 40%);
}

.services-modal__header {
  border: none;
  padding: 1.8rem 2rem 1.2rem;
  background: transparent;
  position: relative;
}

.services-modal__title-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.services-modal__icon-wrapper {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.15), rgba(45, 212, 255, 0.15));
  border: 1px solid rgba(255, 79, 163, 0.2);
  color: var(--primary-color);
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(255, 79, 163, 0.15);
}

.services-modal__title {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #081120;
  margin: 0;
}

.services-modal__subtitle {
  font-size: 0.9rem;
  color: #667085;
  margin: 0.25rem 0 0;
  font-weight: 500;
}

.services-modal__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(8, 17, 32, 0.05);
  border: 1px solid rgba(8, 17, 32, 0.08);
  color: #667085;
  font-size: 1.1rem;
  opacity: 1;
  transition: all 0.25s ease;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
}

.services-modal__close:hover {
  background: rgba(255, 79, 163, 0.12);
  border-color: rgba(255, 79, 163, 0.2);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.services-modal__body {
  padding: 0 2rem 2rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Service Cards Grid */
.modal__cat-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  padding: 0;
}

.modal__cat-services .cat__service-link {
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 17, 32, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(8, 17, 32, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.modal__cat-services .cat__service-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.08), rgba(45, 212, 255, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal__cat-services .cat__service-link:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 163, 0.3);
  box-shadow: 0 16px 40px rgba(255, 79, 163, 0.18);
}

.modal__cat-services .cat__service-link:hover::before {
  opacity: 1;
}

.cat__service-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.12), rgba(255, 122, 24, 0.12));
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.modal__cat-services .cat__service-link:hover .cat__service-icon {
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.2), rgba(255, 122, 24, 0.2));
  transform: scale(1.08);
}

.cat__service-icon svg {
  fill: var(--primary-color);
}

.cat__service-name {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #081120;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.modal__cat-services .cat__service-link:hover .cat__service-name {
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .services-modal {
    border-radius: 24px;
    margin: 1rem;
  }

  .services-modal__header {
    padding: 1.4rem 1.5rem 1rem;
  }

  .services-modal__title-group {
    gap: 0.9rem;
  }

  .services-modal__icon-wrapper {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .services-modal__title {
    font-size: 1.25rem;
  }

  .services-modal__subtitle {
    font-size: 0.85rem;
  }

  .services-modal__close {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .services-modal__body {
    padding: 0 1.5rem 1.5rem;
  }

  .modal__cat-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .modal__cat-services .cat__service-link {
    padding: 1.2rem 0.9rem;
  }

  .cat__service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .cat__service-name {
    font-size: 0.85rem;
  }
}

.section__title h1 {
  font-size: 35px;
}

/* Footer */
.site__footer-shell {
  position: relative;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.25rem;
  border-top: 1px solid rgba(8, 17, 32, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.04);
  background:
    radial-gradient(circle at 10% 10%,
      rgba(45, 212, 255, 0.14),
      transparent 20%),
    radial-gradient(circle at 85% 15%,
      rgba(255, 79, 163, 0.14),
      transparent 24%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(245, 248, 255, 0.98) 100%);
  color: var(--light-black);
}

.site__footer-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.site__footer-brand {
  padding: 0;
}

.site__footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.site__footer-logo h2 {
  margin-bottom: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
}

.site__footer-logo p {
  margin-bottom: 0;
  color: var(--grey);
  line-height: 1.75;
}

.site__footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site__footer-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(8, 17, 32, 0.04);
  color: var(--black);
  transition:
    transform var(--transition-base),
    background-color var(--transition-base);
}

.site__footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 79, 163, 0.12);
  color: var(--primary-color);
}

.site__footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.site__footer-section {
  padding: 0;
}

.site__footer-section h3 {
  margin-bottom: 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.site__footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site__footer-link-list a {
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color var(--transition-base),
    transform var(--transition-base);
  display: inline-block;
}

.site__footer-link-list a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.site__footer-divider {
  height: 1px;
  background: rgba(8, 17, 32, 0.08);
  margin: 0 0 1.5rem 0;
}

.site__footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
}

.site__footer-meta-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.site__footer-meta-links a {
  color: var(--grey);
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    color var(--transition-base),
    transform var(--transition-base);
  display: inline-block;
}

.site__footer-meta-links a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.meta-separator {
  color: rgba(8, 17, 32, 0.2);
  font-size: 0.75rem;
}

.site__footer-payments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site__footer-payments span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 26px;
  color: var(--grey);
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.site__footer-payments span:hover {
  opacity: 1;
}

.site__footer-bottom {
  padding-top: 0;
  border-top: none;
}

.site__footer-bottom p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.85rem;
}

.footer__copyright-bar {
  overflow: hidden;
  padding: 15px 50px;
}

/* Laptops & PCs */
@media screen and (max-width: 1280px) {
  .site__footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .site__footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .site__nav-shell {
    padding: 1rem;
  }

  .site__menu-link {
    padding-inline: 0.85rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .site__header {
    overflow-x: clip;
  }

  .site__nav-shell {
    padding: 0.9rem 1rem;
  }

  .site__nav-shell .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: nowrap;
  }

  .site__menu {
    flex: 1 1 auto;
    justify-content: center;
    row-gap: 0.45rem;
  }

  .site__menu-link {
    padding: 0.7rem 0.78rem !important;
    font-size: 0.92rem;
  }

  .site__utility {
    margin-top: 0;
    gap: 0.55rem;
  }

  .site__utility-link {
    padding: 0.7rem 0.9rem;
    font-size: 0.88rem;
  }

  .site__cart-link {
    padding: 0.74rem 0.9rem;
  }

  .site__nav-cta {
    padding: 0.76rem 1rem;
  }
}

/* Notebooks */
@media screen and (max-width: 992px) {
  .page__main .section-wrapper {
    padding-top: clamp(2.1rem, 5vw, 3rem);
    padding-bottom: clamp(2.1rem, 5vw, 3rem);
  }

  .review__slide {
    padding: 18px 24px;
    margin: 14px;
  }

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

  .site__footer-brand,
  .site__footer-column {
    border-radius: 22px;
  }
}

/* Large tablets */
@media screen and (max-width: 800px) {
  .site__announcement-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Regular tablets */
@media screen and (max-width: 768px) {
  .page__main .section-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .site__footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site__footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .site__footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site__footer-meta-links {
    gap: 0.4rem 0.6rem;
  }

  .hero__form {
    position: relative;
  }

  .section__title h1 {
    font-size: 28px;
  }

  .section__title h2 {
    font-size: 25px;
  }

  .section__title h3 {
    font-size: 22px;
  }

  .review__slide .rev__client {
    align-items: flex-start;
  }

  .review__slide .rev__client-img {
    width: 64px;
    height: 64px;
  }

  .site__utility {
    width: 100%;
    flex-wrap: wrap;
  }

  .site__footer-lower,
  .site__footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Large Mobile / Tablets Screen */
@media screen and (max-width: 600px) {
  .site__nav-wrap {
    padding-top: 0.75rem;
  }

  .site__nav-shell {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .site__brand {
    max-width: calc(100% - 3.5rem);
  }

  .site__brand-tag {
    display: none;
  }

  .main__form {
    padding: 15px;
    border-radius: 20px 20px 0 0;
    background-color: rgba(255, 255, 255, 0.48);
  }

  .main__form .form__controller {
    margin-bottom: 10px;
    width: 100%;
  }

  .section__title h1 {
    font-size: 24px;
  }

  .review__slide {
    padding: 15px 16px;
    margin: 8px;
  }

  .faqs_col .accordion-button {
    font-size: 14px;
    padding-right: 58px;
  }

  .faqs_col .accordion-button.collapsed::after {
    width: 44px;
  }

  .site__menu {
    padding-top: 1rem;
  }

  .site__menu-link {
    border-radius: 16px;
  }

  .site__dropdown-menu {
    min-width: 100%;
    margin-top: 0.45rem !important;
  }

  .site__utility-link,
  .site__cart-link,
  .site__nav-cta {
    width: 100%;
    justify-content: center;
  }

  .site__footer-links {
    grid-template-columns: 1fr;
  }
}

/* Medium Mobile Screen */
@media screen and (max-width: 480px) {
  .site__announcement-copy {
    font-size: 0.84rem;
  }

  .site__brand-name {
    font-size: 1rem;
  }

  .site__brand-mark {
    width: 42px;
    height: 42px;
  }
}

/* Smallest mobile screen */
@media screen and (max-width: 320px) {

  .site__announcement-copy,
  .site__announcement-links {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {

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

    /* Cookie Consent Banner */
    .cookie-consent-banner {
        position: fixed;
        bottom: 24px;
        left: 24px;
        width: 420px;
        max-width: calc(100% - 48px);
        background-color: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .cookie-consent-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-consent-content p {
        margin: 0;
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

    .cookie-consent-content p a {
        color: #FF6B35;
        text-decoration: underline;
        font-weight: 500;
    }

    .cookie-consent-actions {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    #accept-cookies {
        background-color: #FF6B35;
        border-color: #FF6B35;
        padding: 10px 30px;
        font-weight: 600;
        border-radius: 8px;
        color: #fff;
        transition: all 0.3s ease;
        width: auto;
    }

    #accept-cookies:hover {
        background-color: #e55a2b;
        border-color: #e55a2b;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    }

    @media (max-width: 576px) {
        .cookie-consent-banner {
            bottom: 15px;
            left: 15px;
            padding: 20px;
            width: calc(100% - 30px);
        }

        #accept-cookies {
            width: 100%;
        }
    }