:root {
  --rxp-bg: #f6f7fb;
  --rxp-paper: #ffffff;
  --rxp-ink: #0b1220;
  --rxp-muted: rgba(11, 18, 32, 0.72);
  --rxp-line: rgba(11, 18, 32, 0.14);

  --rxp-radius: 16px;
  --rxp-radius-lg: 22px;

  --rxp-navy: #0b1f3a;

  --rxp-shadow-sm: 0 10px 30px rgba(11, 18, 32, 0.08);
  --rxp-shadow-md: 0 20px 70px rgba(11, 18, 32, 0.14);

  --rxp-shell: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--rxp-ink);
  background: var(--rxp-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.rxp-shell {
  width: min(var(--rxp-shell), calc(100% - 48px));
  margin: 0 auto;
}

/*! HEADER */
.rxp-header {
  background: var(--rxp-paper);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

#rxp-header-shell {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.rxp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.rxp-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0ea5a4;
  background: rgba(14, 165, 164, 0.1);
  border: 1px solid rgba(14, 165, 164, 0.25);
}

.rxp-logo {
  width: 28px;
  height: 28px;
}

.rxp-brand-text {
  display: grid;
  line-height: 1.05;
}

.rxp-brand-name {
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 16px;
}

.rxp-brand-sub {
  font-size: 12.5px;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 600;
}

.rxp-nav {
  justify-self: center;
  display: flex;
  gap: 34px;
  align-items: center;
}

.rxp-navlink {
  position: relative;
  font-weight: 650;
  color: rgba(11, 18, 32, 0.75);
  font-size: 15px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 4px;
  border-radius: 8px;
  transition: color 0.2s ease;
}

.rxp-navlink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5a4, #1fb79a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  border-radius: 2px;
}

.rxp-navlink:hover {
  color: var(--rxp-navy);
}

.rxp-navlink:hover::after {
  transform: scaleX(1);
}

.rxp-ext {
  font-size: 14px;
  color: rgba(11, 18, 32, 0.55);
  transform: translateY(-1px);
}

.rxp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 18px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  user-select: none;
}

.rxp-btn:active {
  transform: translateY(1px);
}

.rxp-btn--outline {
  justify-self: end;
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.22);
  color: rgba(11, 18, 32, 0.86);
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.08);
  padding: 13px 20px;
}

.rxp-btn--outline:hover {
  border-color: rgba(11, 18, 32, 0.34);
  background: #1fb79a;
  color: #fff;
}

/*! HERO */
.rxp-hero {
  position: relative;
  min-height: 560px;
  background: var(--rxp-paper);
  overflow: hidden;
}

.rxp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-background.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  transform: scale(1.03);
}

.rxp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 26, 44, 0.88) 0%,
    rgba(8, 26, 44, 0.72) 38%,
    rgba(8, 26, 44, 0.35) 62%,
    rgba(8, 26, 44, 0.12) 78%,
    rgba(8, 26, 44, 0.06) 100%
  );
}

.rxp-hero-inner {
  position: relative;
  height: 100%;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 88px 0 70px;
}

.rxp-hero-content {
  max-width: 760px;
}

.rxp-hero-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(42px, 5.2vw, 68px);
}

.rxp-hero-subtitle {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
  max-width: 66ch;
  font-weight: 560;
}

.rxp-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.rxp-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  padding: 14px 22px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.rxp-btn--ghost:hover {
  background: #fff;
  color: black;
  border-color: rgba(255, 255, 255, 0.48);
}

.rxp-hero-print-img {
  display: none;
}


@media print {
  .rxp-hero-bg,
  .rxp-hero-overlay {
    display: none !important;
  }

  .rxp-hero-print-img {
    display: block !important;
    width: 100% !important;
    height: 3in !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .rxp-hero,
  .rxp-hero-inner {
    min-height: auto !important;
    padding: 0 !important;
  }
}



/* ! SERVICES */
.rxp-services {
  padding: 96px 0 104px;
  background: var(--rxp-bg);
}

.rxp-services-head {
  text-align: center;
  max-width: 78ch;
  margin: 0 auto 54px;
}

.rxp-services-title {
  margin: 0 0 14px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-weight: 750;
  letter-spacing: 0.01em;
  color: var(--rxp-navy);
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.08;
}

.rxp-services-subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 560;
}

.rxp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.rxp-svc-card {
  background: rgba(31, 183, 154, 0.12);
  border-radius: 30px;
  padding: 22px 22px 26px;
  display: grid;
  justify-items: center;
  gap: 18px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
}

.rxp-svc-card:hover {
  border-color: rgba(11, 18, 32, 0.14);
  box-shadow: 0 26px 90px rgba(11, 18, 32, 0.1);
  background: rgba(31, 183, 154, 0.16);
}

.rxp-svc-media {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 10px;
}

.rxp-svc-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(11, 18, 32, 0.12);
}

.rxp-svc-name {
  margin: 0;
  text-align: center;
  color: rgba(11, 18, 32, 0.86);
  font-weight: 750;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.rxp-services-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.rxp-btn--services {
  padding: 14px 22px;
}

/* ! ABOUT */

.rxp-about {
  background: #0ea5a4;
  padding: 96px 0;
  color: #ffffff;
}

.rxp-about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.rxp-about-text {
  max-width: 58ch;
}

.rxp-about-name {
  margin: 0 0 18px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.1;
  font-weight: 700;
}

.rxp-about-lead {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 18px;
}

.rxp-about-text p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
}

.rxp-about-btn {
  background: #0b1f3a;
  color: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.9);
}

.rxp-about-btn:hover {
  background: #fff;
  color: black;
}

.rxp-about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  display: block;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

/*! SPECIAL SECTION */

.rxp-why {
  padding: 104px 0 110px;
  background: #f6f7fb;
}

.rxp-why-head {
  text-align: center;
  max-width: 86ch;
  margin: 0 auto 64px;
}

.rxp-why-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.6);
}

.rxp-why-title {
  margin: 0 0 18px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  color: var(--rxp-navy);
  font-weight: 780;
  font-size: clamp(36px, 3.6vw, 62px);
  line-height: 1.06;
}

.rxp-why-subtitle {
  margin: 0;
  color: rgba(11, 18, 32, 0.6);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 560;
}

.rxp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.rxp-why-card {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 34px;
  padding: 38px 34px 34px;
  text-align: center;
  box-shadow: 0 18px 70px rgba(11, 18, 32, 0.06);
  display: grid;
  gap: 16px;
  justify-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.rxp-why-card:hover {
  border-color: rgba(11, 18, 32, 0.18);
  box-shadow: 0 26px 96px rgba(11, 18, 32, 0.11);
}

.rxp-why-ic {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(31, 183, 154, 0.18);
  color: #0b1f3a;
}

.rxp-why-ic svg {
  width: 34px;
  height: 34px;
}

.rxp-why-card-title {
  margin: 10px 0 0;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-size: 28px;
  line-height: 1.12;
  color: var(--rxp-navy);
  font-weight: 760;
  white-space: normal;
  overflow-wrap: anywhere;
}

.rxp-why-card-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.68);
  max-width: 38ch;
}

/*!FAQ*/

.rxp-faq {
  padding: 104px 0 112px;
  background: var(--rxp-bg);
}

.rxp-faq-head {
  text-align: center;
  max-width: 86ch;
  margin: 0 auto 56px;
}

.rxp-faq-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.6);
}

.rxp-faq-title {
  margin: 0 0 18px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  color: var(--rxp-navy);
  font-weight: 780;
  font-size: clamp(36px, 3.6vw, 62px);
  line-height: 1.06;
}

.rxp-faq-subtitle {
  margin: 0;
  color: rgba(11, 18, 32, 0.6);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 560;
}

.rxp-faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}

.rxp-faq-item {
  background: rgba(31, 183, 154, 0.14);
  border: 1px solid rgba(31, 183, 154, 0.25);
  border-radius: 28px;
  box-shadow: none;
  overflow: hidden;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.rxp-faq-item:hover {
  background: rgba(31, 183, 154, 0.18);
  border-color: rgba(31, 183, 154, 0.38);
}
.rxp-faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  color: rgba(11, 18, 32, 0.9);
  font-weight: 760;
  font-size: 18px;
}

.rxp-faq-a {
  padding: 0 26px;
}

.rxp-faq-q:focus-visible {
  outline: 3px solid rgba(31, 183, 154, 0.45);
  outline-offset: 4px;
  border-radius: 18px;
}

.rxp-faq-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(31, 183, 154, 0.16);
  position: relative;
}

.rxp-faq-icon::before,
.rxp-faq-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(11, 18, 32, 0.78);
  border-radius: 2px;
}

.rxp-faq-icon::before {
  width: 16px;
  height: 2px;
}

.rxp-faq-icon::after {
  width: 2px;
  height: 16px;
  transition: transform 0.18s ease;
}

.rxp-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.rxp-faq-a p {
  margin: 0;
  padding: 0 0 22px;
  color: rgba(11, 18, 32, 0.7);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 86ch;
}

.rxp-faq-item.is-open .rxp-faq-a {
  max-height: 260px;
}

.rxp-faq-item.is-open .rxp-faq-icon::after {
  transform: scaleY(0);
}

.rxp-faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/*! CONTACTS */
.rxp-contact {
  padding: 104px 0 112px;
  background: var(--rxp-bg);
}

.rxp-contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.rxp-contact__card {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 34px;
  padding: 38px 34px 34px;
  box-shadow: 0 18px 70px rgba(11, 18, 32, 0.06);
}

.rxp-contact__head {
  margin: 0 0 24px;
  max-width: 70ch;
}

.rxp-contact__kicker {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.6);
}

.rxp-contact__title {
  margin: 0 0 14px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  color: var(--rxp-navy);
  font-weight: 780;
  font-size: clamp(32px, 3.2vw, 54px);
  line-height: 1.08;
}

.rxp-contact__subtitle {
  margin: 0;
  color: rgba(11, 18, 32, 0.62);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 560;
}

.rxp-contact__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rxp-contact__field--full {
  grid-column: 1 / -1;
}

.rxp-contact__label {
  display: block;
  font-weight: 720;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.78);
  margin: 0 0 8px;
}

.rxp-contact__input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(246, 247, 251, 0.75);
  color: rgba(11, 18, 32, 0.9);
  font-size: 16px;
  outline: none;

  font-family: inherit;
  letter-spacing: normal;

  transition: border-color 0.15s ease, background 0.15s ease,
    box-shadow 0.15s ease;
}

.rxp-contact__input::placeholder {
  color: rgba(11, 18, 32, 0.45);
  font-family: inherit;
  letter-spacing: normal;
}

.rxp-contact__input:focus {
  border-color: rgba(31, 183, 154, 0.65);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(31, 183, 154, 0.18);
}

.rxp-contact__textarea {
  resize: vertical;
  min-height: 140px;
}

.rxp-contact__select {
  appearance: none;
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      rgba(11, 18, 32, 0.55) 50%
    ),
    linear-gradient(135deg, rgba(11, 18, 32, 0.55) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.rxp-contact__help {
  margin: 10px 2px 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(11, 18, 32, 0.55);
}

.rxp-contact__actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.rxp-contact__note {
  margin: 0;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 560;
}

.rxp-contact__tel {
  color: rgba(11, 18, 32, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(31, 183, 154, 0.45);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.rxp-contact__tel:hover {
  text-decoration-color: rgba(31, 183, 154, 0.9);
}

.rxp-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font: inherit;
  font-weight: 800;
  line-height: 1;

  padding: 14px 22px;
  border-radius: 14px;

  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  text-decoration: none;

  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.rxp-contact__btn--primary {
  background: var(--rxp-navy);
  color: #ffffff;
  border-color: rgba(11, 31, 58, 0.9);
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.08);
}

.rxp-contact__btn--primary:hover {
  background: #1fb79a;
  border-color: rgba(31, 183, 154, 0.9);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.12);
}

.rxp-contact__btn--soft {
  background: rgba(31, 183, 154, 0.16);
  border-color: rgba(31, 183, 154, 0.32);
  color: rgba(11, 18, 32, 0.9);
  padding: 12px 16px;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.08);
}

.rxp-contact__btn--soft:hover {
  background: #1fb79a;
  color: #ffffff;
  border-color: rgba(31, 183, 154, 0.9);
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.14);
}

.rxp-contact__btn:active {
  transform: none !important;
}

.rxp-contact__photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 18px 70px rgba(11, 18, 32, 0.06);
}

.rxp-contact__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.rxp-contact__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.05) 0%,
    rgba(11, 31, 58, 0.28) 55%,
    rgba(11, 31, 58, 0.52) 100%
  );
}

.rxp-contact__visit {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  padding: 18px 18px 16px;

  backdrop-filter: blur(4px);
}

.rxp-contact__visit-title {
  margin: 0 0 8px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  color: var(--rxp-navy);
  font-weight: 760;
}

.rxp-contact__visit-copy {
  margin: 0 0 10px;
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.55;
  font-weight: 560;
}

/*! REVIEWS */

.rxp-reviews {
  padding: 104px 0 112px;
  background: #2b7f7b;
  color: #ffffff;
}

.rxp-reviews__head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.rxp-reviews__pill {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  margin: 0 auto 18px;
  flex-wrap: wrap;
}

.rxp-reviews__pill-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.rxp-reviews__pill-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

.rxp-reviews__title {
  margin: 0 0 12px;
  font-family: ui-serif, Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.rxp-reviews__title em {
  font-style: italic;
  font-weight: 750;
  opacity: 0.92;
}

.rxp-reviews__subtitle {
  margin: 0 auto;
  max-width: 76ch;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.rxp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.rxp-review {
  background: #ffffff;
  color: rgba(11, 18, 32, 0.86);
  border-radius: 34px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  padding: 28px 28px 22px;
  display: grid;
  gap: 14px;
  min-height: 320px;
}

.rxp-review__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.68);
  font-weight: 900;
}

.rxp-review__quote {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 600;
}

.rxp-review__meta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.rxp-review__stars {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.rxp-star {
  width: 26px;
  height: 26px;
  background: #e94141;
  display: inline-block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.3l-6.2 3.7 1.7-7.1L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-5.5 4.7 1.7 7.1z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.3l-6.2 3.7 1.7-7.1L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-5.5 4.7 1.7 7.1z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.rxp-review__name {
  margin: 0;
  text-align: right;
  font-weight: 750;
  color: rgba(11, 18, 32, 0.7);
}

/*! FOOTER */

.rxp-footer {
  background: linear-gradient(180deg, #31b7a2 0%, #2aa897 100%);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.rxp-footer__inner {
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.rxp-footer__brand {
  display: block;
  margin: 0 0 10px;
}

.rxp-footer__brand-name {
  font-size: 28px;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.rxp-footer__copy {
  margin: 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.rxp-footer__title {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.rxp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rxp-footer__links a {
  position: relative;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.rxp-footer__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.rxp-footer__links a:hover {
  color: #ffffff;
}

.rxp-footer__links a:hover::after {
  transform: scaleX(1);
}

.rxp-footer__line {
  margin: 0 0 10px;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.rxp-footer__social--inline {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.rxp-footer__social-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);

  transition: background 0.16s ease, border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.rxp-footer__social-link svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.95);
}

.rxp-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.18);
}

.rxp-footer__social-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.rxp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rxp-footer__bottom-inner {
  padding: 18px 0 22px;
  display: flex;
  justify-content: center;
}

.rxp-footer__legal {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
  .rxp-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 0 46px;
  }

  .rxp-footer__brand-name {
    font-size: 26px;
  }

  .rxp-contact__grid {
    grid-template-columns: 1fr;
  }

  .rxp-contact-inner {
    grid-template-columns: 1fr;
  }

  .rxp-contact-media {
    min-height: 420px;
  }

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

  .rxp-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rxp-reviews__grid {
    grid-template-columns: 1fr;
  }

  .rxp-review {
    min-height: auto;
  }

  .rxp-review__stars {
    justify-content: flex-start;
  }

  .rxp-review__name {
    text-align: left;
  }
}

@media (max-width: 920px) {
  #rxp-header-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'brand button'
      'nav nav';
    height: auto;
    padding: 14px 0 12px;
  }

  #rxp-brand {
    grid-area: brand;
  }

  #rxp-contact-btn {
    grid-area: button;
  }

  #rxp-nav {
    grid-area: nav;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    padding: 8px 0 2px;
  }

  .rxp-hero-inner {
    padding: 76px 0 58px;
  }
}

@media (max-width: 900px) {
  .rxp-footer__inner {
    gap: 36px;
  }

  .rxp-about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .rxp-about-image img {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .rxp-contact {
    padding: 86px 0 92px;
  }

  .rxp-contact-form {
    padding: 30px 22px 24px;
  }

  .rxp-form-grid {
    grid-template-columns: 1fr;
  }
  .rxp-faq {
    padding: 86px 0 92px;
  }

  .rxp-faq-subtitle {
    font-size: 18px;
  }

  .rxp-faq-q {
    padding: 18px 18px;
    font-size: 17px;
  }

  .rxp-faq-a {
    padding: 0 18px;
  }
}

@media (max-width: 520px) {
  .rxp-shell {
    width: min(var(--rxp-shell), calc(100% - 28px));
  }

  .rxp-navlink {
    padding: 10px 10px;
  }

  .rxp-hero {
    min-height: 520px;
  }

  .rxp-hero-inner {
    min-height: 520px;
    padding: 66px 0 52px;
  }

  .rxp-why {
    padding: 86px 0 92px;
  }

  .rxp-why-grid {
    grid-template-columns: 1fr;
  }

  .rxp-why-subtitle {
    font-size: 18px;
  }

  .rxp-why-card {
    padding: 34px 28px 30px;
  }

  .rxp-services {
    padding: 78px 0 88px;
  }

  .rxp-services-grid {
    grid-template-columns: 1fr;
  }

  .rxp-services-subtitle {
    font-size: 18px;
  }
}
