/* RechtsPortalen — Tech Legal Desk Theme */
:root {
  --rp-bg: #0b1220;
  --rp-bg-card: rgba(15, 23, 42, 0.75);
  --rp-blue: #3b82f6;
  --rp-cyan: #22d3ee;
  --rp-text: #e2e8f0;
  --rp-text-muted: #94a3b8;
  --rp-border: rgba(59, 130, 246, 0.25);
  --rp-glass: rgba(11, 18, 32, 0.65);
  --rp-radius: 12px;
  --rp-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --rp-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--rp-bg);
  color: var(--rp-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--rp-cyan);
  text-decoration: none;
  transition: color var(--rp-transition);
}

a:hover {
  color: var(--rp-blue);
}

.rp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header — two-row sticky */
.rp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rp-border);
}

.rp-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem 0.75rem;
}

.rp-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rp-text);
  margin-bottom: 0.75rem;
}

.rp-logo i {
  color: var(--rp-cyan);
  font-size: 1.75rem;
}

.rp-logo span {
  background: linear-gradient(135deg, var(--rp-blue), var(--rp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
}

.rp-nav a {
  color: var(--rp-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
}

.rp-nav a:hover,
.rp-nav a.rp-nav--active {
  color: var(--rp-cyan);
}

.rp-nav a.rp-nav--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rp-blue), var(--rp-cyan));
  border-radius: 2px;
}

.rp-burger {
  display: none;
  background: none;
  border: none;
  color: var(--rp-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero */
.rp-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.rp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.7) 50%, rgba(59, 130, 246, 0.15) 100%);
  z-index: 1;
}

.rp-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.rp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rp-glass);
  border: 1px solid var(--rp-border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--rp-cyan);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.rp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.rp-hero h1 span {
  background: linear-gradient(135deg, var(--rp-blue), var(--rp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rp-hero__subtitle {
  font-size: 1.15rem;
  color: var(--rp-text-muted);
  max-width: 580px;
  margin-bottom: 2rem;
}

.rp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.rp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--rp-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--rp-transition);
  text-decoration: none;
}

.rp-btn--primary {
  background: linear-gradient(135deg, var(--rp-blue), #2563eb);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.rp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.55);
  color: #fff;
}

.rp-btn--outline {
  background: var(--rp-glass);
  color: var(--rp-cyan);
  border: 1px solid var(--rp-border);
  backdrop-filter: blur(8px);
}

.rp-btn--outline:hover {
  border-color: var(--rp-cyan);
  color: var(--rp-cyan);
  background: rgba(34, 211, 238, 0.08);
}

/* Glass cards */
.rp-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.rp-glass-card {
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all var(--rp-transition);
}

.rp-glass-card:hover {
  border-color: var(--rp-cyan);
  transform: translateY(-4px);
  box-shadow: var(--rp-shadow);
}

.rp-glass-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.15));
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--rp-cyan);
}

.rp-glass-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.rp-glass-card p {
  font-size: 0.9rem;
  color: var(--rp-text-muted);
}

/* Sections */
.rp-section {
  padding: 5rem 0;
}

.rp-section--alt {
  background: rgba(15, 23, 42, 0.5);
}

.rp-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.rp-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--rp-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.rp-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.rp-section__desc {
  color: var(--rp-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Split blocks */
.rp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.rp-split__image {
  border-radius: var(--rp-radius);
  overflow: hidden;
  border: 1px solid var(--rp-border);
  box-shadow: var(--rp-shadow);
}

.rp-split__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.rp-split__content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rp-split__content p {
  color: var(--rp-text-muted);
  margin-bottom: 1rem;
}

.rp-feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.rp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--rp-text-muted);
}

.rp-feature-list i {
  color: var(--rp-cyan);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Services grid */
.rp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.rp-service-card {
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  overflow: hidden;
  transition: all var(--rp-transition);
}

.rp-service-card:hover {
  border-color: var(--rp-blue);
  transform: translateY(-4px);
  box-shadow: var(--rp-shadow);
}

.rp-service-card__img {
  height: 180px;
  overflow: hidden;
}

.rp-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rp-transition);
}

.rp-service-card:hover .rp-service-card__img img {
  transform: scale(1.05);
}

.rp-service-card__body {
  padding: 1.5rem;
}

.rp-service-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rp-service-card__body h3 i {
  color: var(--rp-blue);
}

.rp-service-card__body p {
  font-size: 0.9rem;
  color: var(--rp-text-muted);
  margin-bottom: 1rem;
}

.rp-service-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rp-cyan);
}

/* Pricing */
.rp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rp-pricing-card {
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--rp-transition);
  position: relative;
}

.rp-pricing-card--featured {
  border-color: var(--rp-cyan);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
}

.rp-pricing-card--featured::before {
  content: 'Популярный';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rp-blue), var(--rp-cyan));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

.rp-pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--rp-blue);
}

.rp-pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.rp-pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rp-cyan);
  margin: 1rem 0;
}

.rp-pricing-card__price span {
  font-size: 1rem;
  color: var(--rp-text-muted);
  font-weight: 400;
}

.rp-pricing-card__features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.rp-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--rp-text-muted);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.rp-pricing-card__features i {
  color: var(--rp-cyan);
}

/* Testimonials */
.rp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.rp-testimonial {
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.75rem;
  position: relative;
}

.rp-testimonial__quote {
  font-size: 2rem;
  color: var(--rp-blue);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.rp-testimonial p {
  color: var(--rp-text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.rp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rp-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rp-blue), var(--rp-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.rp-testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.rp-testimonial__role {
  font-size: 0.8rem;
  color: var(--rp-text-muted);
}

/* Quiz */
.rp-quiz {
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.rp-quiz__progress {
  height: 6px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.rp-quiz__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rp-blue), var(--rp-cyan));
  border-radius: 3px;
  transition: width var(--rp-transition);
  width: 0%;
}

.rp-quiz__question {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.rp-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rp-quiz__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(11, 18, 32, 0.6);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  cursor: pointer;
  transition: all var(--rp-transition);
  color: var(--rp-text);
  font-size: 0.95rem;
}

.rp-quiz__option:hover {
  border-color: var(--rp-blue);
  background: rgba(59, 130, 246, 0.08);
}

.rp-quiz__option.rp-quiz__option--selected {
  border-color: var(--rp-cyan);
  background: rgba(34, 211, 238, 0.1);
}

.rp-quiz__option input {
  accent-color: var(--rp-cyan);
}

.rp-quiz__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.rp-quiz__result {
  text-align: center;
  display: none;
}

.rp-quiz__result.rp-quiz__result--visible {
  display: block;
}

.rp-quiz__score {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rp-blue), var(--rp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.rp-quiz__recommendation {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}

.rp-quiz__recommendation h4 {
  color: var(--rp-cyan);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTA */
.rp-cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 211, 238, 0.1));
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.rp-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.rp-cta p {
  color: var(--rp-text-muted);
  margin-bottom: 1.5rem;
}

/* Page hero (inner pages) */
.rp-page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--rp-border);
}

.rp-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.rp-page-hero p {
  color: var(--rp-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact form */
.rp-form {
  max-width: 600px;
  margin: 0 auto;
}

.rp-form__group {
  margin-bottom: 1.25rem;
}

.rp-form__group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.rp-form__group input,
.rp-form__group textarea,
.rp-form__group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(11, 18, 32, 0.8);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  color: var(--rp-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--rp-transition);
}

.rp-form__group input:focus,
.rp-form__group textarea:focus,
.rp-form__group select:focus {
  outline: none;
  border-color: var(--rp-cyan);
}

.rp-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.rp-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--rp-text-muted);
}

.rp-form__checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--rp-cyan);
}

/* Contact info */
.rp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.rp-contact-card {
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.5rem;
  text-align: center;
}

.rp-contact-card i {
  font-size: 1.5rem;
  color: var(--rp-cyan);
  margin-bottom: 0.75rem;
}

.rp-contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.rp-contact-card p,
.rp-contact-card a {
  font-size: 0.9rem;
  color: var(--rp-text-muted);
}

/* About team */
.rp-team-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.rp-team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.rp-team-card__body {
  padding: 2rem 2rem 2rem 0;
}

.rp-team-card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.rp-team-card__role {
  color: var(--rp-cyan);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.rp-team-card__body p {
  color: var(--rp-text-muted);
  margin-bottom: 0.75rem;
}

/* Privacy content */
.rp-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.rp-legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--rp-cyan);
}

.rp-legal-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.rp-legal-content p,
.rp-legal-content li {
  color: var(--rp-text-muted);
  margin-bottom: 0.75rem;
}

.rp-legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Stats */
.rp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.rp-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--rp-bg-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
}

.rp-stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rp-cyan);
}

.rp-stat__label {
  font-size: 0.85rem;
  color: var(--rp-text-muted);
  margin-top: 0.25rem;
}

/* Footer */
.rp-footer {
  background: rgba(7, 12, 22, 0.95);
  border-top: 1px solid var(--rp-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.rp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.rp-footer__brand p {
  color: var(--rp-text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.rp-footer h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--rp-text);
}

.rp-footer ul {
  list-style: none;
}

.rp-footer ul li {
  margin-bottom: 0.5rem;
}

.rp-footer ul a {
  color: var(--rp-text-muted);
  font-size: 0.9rem;
}

.rp-footer ul a:hover {
  color: var(--rp-cyan);
}

.rp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rp-border);
  font-size: 0.85rem;
  color: var(--rp-text-muted);
}

/* Cookie banner */
.rp-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(7, 12, 22, 0.97);
  border-top: 1px solid var(--rp-border);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform var(--rp-transition);
}

.rp-cookie.rp-cookie--visible {
  transform: translateY(0);
}

.rp-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.rp-cookie__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  color: var(--rp-text-muted);
}

.rp-cookie__text a {
  color: var(--rp-cyan);
  text-decoration: underline;
}

.rp-cookie__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.rp-cookie__btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--rp-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--rp-transition);
}

.rp-cookie__btn--accept {
  background: linear-gradient(135deg, var(--rp-blue), var(--rp-cyan));
  color: #fff;
}

.rp-cookie__btn--decline {
  background: transparent;
  color: var(--rp-text-muted);
  border: 1px solid var(--rp-border);
}

.rp-cookie__btn--settings {
  background: transparent;
  color: var(--rp-cyan);
  border: 1px solid var(--rp-border);
}

/* Form success message */
.rp-form__success {
  display: none;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--rp-cyan);
  border-radius: var(--rp-radius);
  padding: 1rem;
  text-align: center;
  color: var(--rp-cyan);
  margin-top: 1rem;
}

.rp-form__success.rp-form__success--visible {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .rp-split {
    grid-template-columns: 1fr;
  }

  .rp-split--reverse .rp-split__image {
    order: -1;
  }

  .rp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .rp-team-card {
    grid-template-columns: 1fr;
  }

  .rp-team-card__body {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .rp-burger {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  .rp-header__inner {
    position: relative;
    padding-right: 3.5rem;
  }

  .rp-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1rem;
    gap: 0;
  }

  .rp-nav.rp-nav--open {
    display: flex;
  }

  .rp-nav a {
    padding: 0.6rem 0;
    width: 100%;
    text-align: center;
  }

  .rp-footer__grid {
    grid-template-columns: 1fr;
  }

  .rp-hero {
    min-height: 70vh;
  }
}
