/* Modern Medical Certificates Page Styles - Glassmorphism + Organic Design */
/* Единый корпоративный слой направлений: hero, why, services (аккордеон), обследования, отзывы */
/* Фирменный цвет (оранжевый) — в MedicalCertificatesPage.playful.css */

/* ========== CSS Variables ========== */
:root {
  --c-primary: #1B5E45;
  --c-primary-light: #2D7A5F;
  --c-primary-dark: #124734;
  --c-primary-soft: rgba(27, 94, 69, 0.08);
  --c-primary-medium: rgba(27, 94, 69, 0.15);
  --c-accent-warm: #E8B86D;
  --c-accent-gold: #D4A857;
  --c-bg-warm: #FEFCF8;
  --c-bg-cream: #FDF9F3;
  --c-glass-bg: rgba(255, 255, 255, 0.7);
  --c-glass-border: rgba(255, 255, 255, 0.5);
  --c-text-dark: #1A2E1A;
  --c-text-medium: #3D5A3D;
  --c-text-light: #6B8B6B;
  --c-shadow-soft: 0 4px 20px rgba(27, 94, 69, 0.08);
  --c-shadow-medium: 0 8px 32px rgba(27, 94, 69, 0.12);
  --c-shadow-strong: 0 20px 60px rgba(27, 94, 69, 0.15);
}

/* ========== Global ========== */
.medical-certificates-page {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--c-text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Hero Section - Modern Organic Design ========== */
.specialty-hero {
  background: linear-gradient(135deg, #FEFCF8 0%, #F5FAF8 50%, #E8F5F0 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.specialty-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-organic 8s ease-in-out infinite;
}

.specialty-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-organic 10s ease-in-out infinite reverse;
}

@keyframes pulse-organic {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.specialty-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.specialty-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 28px;
  border: 1px solid var(--c-glass-border);
  box-shadow: var(--c-shadow-soft);
}

.specialty-hero__badge-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(27, 94, 69, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(27, 94, 69, 0.2);
  }
}

.specialty-hero__title {
  font-size: 60px;
  font-weight: 400;
  color: var(--c-text-dark);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.specialty-hero__title em {
  color: var(--c-primary);
  font-style: normal;
}

.specialty-hero__subtitle {
  font-size: 20px;
  color: var(--c-text-medium);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 400;
}

.specialty-hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.specialty-hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--c-glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--c-shadow-soft);
}

.specialty-hero__feature:hover {
  background: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--c-shadow-medium);
  border-color: rgba(27, 94, 69, 0.2);
}

.specialty-hero__feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(27, 94, 69, 0.3);
}

.specialty-hero__feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-dark);
}

.specialty-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.specialty-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .hero__image-wrapper {
    max-width: 620px;
  }
}

.hero__blob-bg {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.08) 0%, rgba(232, 184, 109, 0.06) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 10s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }
  75% {
    border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%;
  }
}

.hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.1), rgba(232, 184, 109, 0.1));
}

.hero__deco-circle--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  animation: float-circle 7s ease-in-out infinite;
}

.hero__deco-circle--2 {
  width: 100px;
  height: 100px;
  bottom: -10px;
  left: -60px;
  animation: float-circle 5s ease-in-out infinite reverse;
}

.hero__deco-circle--3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: -70px;
  animation: float-circle 6s ease-in-out infinite;
}

@keyframes float-circle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

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

.hero__image-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(27, 94, 69, 0.25),
    0 10px 30px rgba(27, 94, 69, 0.1);
  animation: blob-morph 10s ease-in-out infinite;
  border: 8px solid white;
  position: relative;
}

.hero__image-blob::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(27, 94, 69, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__image-blob:hover .hero__img {
  transform: scale(1.05);
}

/* ========== Why Section - Glassmorphism Cards ========== */
.why-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, white 50%, var(--c-bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--c-text-light);
  font-weight: 400;
}

.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-section__card {
  background: var(--c-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--c-glass-border);
  box-shadow: var(--c-shadow-soft);
  position: relative;
  overflow: hidden;
}

.why-section__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent-warm));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-section__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--c-shadow-strong);
  background: white;
}

.why-section__card:hover::before {
  transform: scaleX(1);
}

.why-section__card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 94, 69, 0.3);
  transition: transform 0.4s ease;
}

.why-section__card:hover .why-section__card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-section__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 12px;
}

.why-section__card-text {
  font-size: 15px;
  color: var(--c-text-medium);
  line-height: 1.7;
}

/* ========== Services Section - Modern Accordion ========== */
.services-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 94, 69, 0.1), transparent);
}

.services-section__accordion {
  max-width: 900px;
  margin: 60px auto 0;
}

.services-section__item {
  background: var(--c-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-glass-border);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--c-shadow-soft);
}

.services-section__item:hover {
  box-shadow: var(--c-shadow-medium);
  transform: translateX(4px);
}

.services-section__item--active {
  border-color: rgba(27, 94, 69, 0.3);
  box-shadow: var(--c-shadow-strong);
  background: white;
  transform: scale(1.01);
}

.services-section__header {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.services-section__header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-section__header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.1), rgba(27, 94, 69, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.services-section__item--active .services-section__header-icon {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: white;
  transform: scale(1.1);
}

.services-section__header-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 4px;
}

.services-section__header-desc {
  font-size: 14px;
  color: var(--c-text-light);
}

.services-section__header-arrow {
  width: 44px;
  height: 44px;
  background: rgba(27, 94, 69, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section__item--active .services-section__header-arrow {
  transform: rotate(180deg);
  background: var(--c-primary);
  color: white;
}

.services-section__content {
  padding: 0 32px 32px;
}

.services-section__body {
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.03), rgba(232, 184, 109, 0.03));
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(27, 94, 69, 0.08);
}

.services-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.services-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(27, 94, 69, 0.08);
  transition: all 0.3s ease;
}

.services-section__list-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--c-shadow-soft);
  border-color: rgba(27, 94, 69, 0.15);
}

.services-section__list-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.1), rgba(232, 184, 109, 0.1));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 16px;
}

.services-section__list-text {
  flex: 1;
  min-width: 0;
}

.services-section__list-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

.services-section__list-form {
  font-size: 13px;
  color: var(--c-text-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.services-section__list-form i {
  font-size: 12px;
  color: var(--c-accent-warm);
}

.services-section__list-desc {
  font-size: 13px;
  color: var(--c-text-medium);
  line-height: 1.5;
  margin-top: 4px;
}

.services-section__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 94, 69, 0.1);
}

.services-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(27, 94, 69, 0.3);
}

.services-section__btn:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(27, 94, 69, 0.4);
}

/* ========== Portal Section (гос. порталы) ========== */
.portal-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, #F5FAF8 50%, var(--c-bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.portal-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.portal-section__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.portal-section__header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 28px;
}

.portal-section__header .section-title {
  font-size: 38px;
}

.portal-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portal-section__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(27, 94, 69, 0.1);
  font-size: 14px;
  color: var(--c-text-medium);
  line-height: 1.5;
  box-shadow: var(--c-shadow-soft);
}

.portal-section__list i {
  color: var(--c-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.portal-section__list strong {
  color: var(--c-text-dark);
}

.portal-section__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(27, 94, 69, 0.06);
  border-radius: 14px;
  font-size: 13px;
  color: var(--c-text-medium);
  line-height: 1.5;
  border-left: 3px solid var(--c-primary);
}

.portal-section__note i {
  color: var(--c-primary);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.portal-section__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.portal-section__logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px;
  background: var(--c-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--c-glass-border);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--c-shadow-soft);
}

.portal-section__logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--c-shadow-medium);
  border-color: rgba(27, 94, 69, 0.2);
}

.portal-section__logo-card i {
  font-size: 2.5rem;
  color: var(--c-primary);
}

.portal-section__logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-dark);
}

/* ========== Reviews Section - Glassmorphism Cards ========== */
.reviews-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--c-bg-cream) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.reviews-section__card {
  background: var(--c-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--c-glass-border);
  box-shadow: var(--c-shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-section__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--c-shadow-strong);
  background: white;
}

.reviews-section__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reviews-section__card-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(27, 94, 69, 0.3);
  flex-shrink: 0;
}

.reviews-section__card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 6px;
}

.reviews-section__card-rating {
  display: flex;
  gap: 4px;
}

.reviews-section__card-rating i {
  color: #ddd;
  font-size: 14px;
  transition: color 0.3s ease;
}

.reviews-section__card-rating i.filled {
  color: var(--c-accent-warm);
}

.reviews-section__card-text {
  font-size: 15px;
  color: var(--c-text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.reviews-section__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 94, 69, 0.1);
}

.reviews-section__card-date {
  font-size: 13px;
  color: var(--c-text-light);
}

.reviews-section__card-verified {
  font-size: 13px;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.reviews-section__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 28px;
  background: rgba(27, 94, 69, 0.08);
  border-radius: 50px;
  color: var(--c-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.reviews-section__link:hover {
  background: var(--c-primary);
  color: white;
  gap: 16px;
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-section__text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cta-section__btn--solid {
  background: white;
  color: var(--c-primary-dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-section__btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-section__btn--ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.cta-section__btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .specialty-hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .specialty-hero__title {
    font-size: 44px;
  }

  .specialty-hero__subtitle {
    margin: 0 auto 40px;
  }

  .specialty-hero__features {
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .specialty-hero__cta {
    justify-content: center;
  }

  .hero__image-wrapper {
    max-width: 420px;
  }

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

  .portal-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portal-section__logos {
    order: -1;
    grid-template-columns: repeat(4, 1fr);
  }

  .portal-section__header {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .specialty-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .specialty-hero__title {
    font-size: 34px;
  }

  .specialty-hero__subtitle {
    font-size: 16px;
  }

  .specialty-hero__features {
    grid-template-columns: 1fr;
  }

  .specialty-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 30px;
  }

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

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

  .services-section__content {
    padding: 0 20px 24px;
  }

  .services-section__header {
    padding: 22px 20px;
  }

  .reviews-section__grid {
    grid-template-columns: 1fr;
  }

  .portal-section__logos {
    grid-template-columns: 1fr 1fr;
  }

  .portal-section__logo-card {
    padding: 24px 16px;
  }

  .portal-section__logo-card i {
    font-size: 2rem;
  }

  .cta-section__title {
    font-size: 30px;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__image-wrapper {
    max-width: 340px;
  }

  .hero__deco-circle--1 {
    width: 50px;
    height: 50px;
    top: -15px;
  }

  .hero__deco-circle--2 {
    width: 25px;
    height: 25px;
  }
}

/* ========== Animations on Scroll ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-section__card,
.services-section__item,
.reviews-section__card {
  animation: fadeInUp 0.6s ease forwards;
}
