.lift-card {
  background: var(--brand-white);
  padding: 2rem;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}
/* Gynohealth core styles */
:root {
  --brand-primary: #6c63ff;
  --brand-secondary: #f45b8d;
  --brand-dark: #1f1f2b;
  --brand-slate: #4f4f5e;
  --brand-muted: #8c8ea8;
  --brand-cream: #fff6fb;
  --brand-white: #ffffff;
  --max-width: 1200px;
  --shadow-soft: 0 20px 60px rgba(32, 12, 69, 0.08);
}

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

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--brand-dark);
  background-color: var(--brand-white);
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(31, 31, 43, 0.05);
  backdrop-filter: blur(10px);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.logo-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo strong {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.logo span {
  display: block;
  font-size: 0.8rem;
  color: var(--brand-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-tagline {
  color: var(--brand-secondary);
}

.logo-subline {
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--brand-slate);
}

.nav-links a {
  padding: 0.2rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--brand-secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-bar .nav-actions {
  justify-content: flex-end;
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-secondary), var(--brand-primary));
  color: var(--brand-white);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: var(--brand-primary);
  background: transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(244, 91, 141, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(108, 99, 255, 0.3);
  background: transparent;
  color: var(--brand-primary);
}

main {
  flex: 1;
}

.hero {
  background: linear-gradient(135deg, #fff9ff, #f1eeff);
  padding: 4rem 1.5rem 2rem;
  position: relative;
}

.hero-full {
  padding: 0 !important;
  background: transparent;
  margin: 0 !important;
  margin-bottom: 0 !important;
  width: 100%;
  line-height: 0;
  display: block;
}

.hero-full .hero-carousel {
  border-radius: 0;
  min-height: 530px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: none;
  display: block;
}

.hero-full .hero-carousel .slides {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-full .hero-carousel .slide {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.hero .hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--brand-secondary);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 1rem 0;
  color: var(--brand-dark);
}

.hero .hero-grid {
  grid-template-rows: auto 1fr;
}

.hero .hero-grid > div:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero .hero-grid > div:first-child .eyebrow,
.hero .hero-grid > div:first-child h1 {
  grid-column: 1;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-grid > div:first-child .eyebrow {
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.hero .hero-grid > div:first-child h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 3rem;
  margin-top: 0;
}

.hero .hero-grid > div:first-child > p,
.hero .hero-grid > div:first-child > div {
  grid-column: 1;
  max-width: 100%;
}

.hero p {
  font-size: 1.1rem;
  color: var(--brand-slate);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.intro {
  background: linear-gradient(135deg, #fff9ff, #f5f0ff);
  padding: 3rem 1.5rem 2rem;
}

.intro-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro .nav-actions {
  justify-content: center;
  flex-wrap: wrap;
}

.intro-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.cta-band {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-full + .cta-band {
  margin-top: 0 !important;
  padding-top: 2.5rem;
}

.cta-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.mega-services {
  background: var(--brand-white);
  padding-top: 3rem;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.mega-grid div {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.mega-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-grid a {
  color: var(--brand-slate);
  font-weight: 500;
}

.mega-grid a:hover {
  color: var(--brand-secondary);
}

.stat-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 91, 141, 0.08));
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 25px 50px rgba(108, 99, 255, 0.1);
  text-align: center;
  border: 1px solid rgba(108, 99, 255, 0.15);
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(244, 91, 141, 0.2), rgba(108, 99, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-card h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--brand-primary);
}

.stat-card span {
  font-size: 0.95rem;
  color: var(--brand-slate);
  font-weight: 500;
}

.hero-media {
  position: relative;
  margin-top: 3rem;
  align-self: start;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  min-height: 400px;
}

.hero-carousel {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  aspect-ratio: 1800 / 633;
  min-height: 320px;
  background: #fff;
}

.hero-carousel .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.75s ease;
}

.hero-carousel .slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
}

.hero-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-full .hero-carousel .slide img {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease;
}

.hero-control.prev {
  left: 1rem;
}

.hero-control.next {
  right: 1rem;
}

.hero-control:hover {
  background: var(--brand-white);
}

.media-badge {
  display: none;
}

section {
  padding: 4rem 1.5rem;
}

section.hero-full {
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

section.hero-full + section {
  margin-top: 0 !important;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brand-dark);
}

.section-header p {
  color: var(--brand-slate);
}

.section-header.align-left {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto 2rem;
  text-align: left;
  padding: 0;
}

.accent-heading {
  color: var(--brand-secondary);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.content-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.12);
  color: var(--brand-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.card {
  background: var(--brand-white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

.card p {
  color: var(--brand-slate);
}

.list-check li {
  padding-left: 1.8rem;
  margin-bottom: 0.85rem;
  position: relative;
  color: var(--brand-slate);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 0 0 6px rgba(108, 99, 255, 0.12);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: 20px;
  padding: 1.5rem;
  background: var(--brand-cream);
  border: 1px solid rgba(108, 99, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 99, 255, 0.3);
}

.service-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  color: var(--brand-dark);
}

.service-card p {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.95rem;
}

.highlight {
  background: linear-gradient(145deg, #fef5ff, #e9f1ff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  background: var(--brand-white);
  border-radius: 24px;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(108, 99, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(31, 31, 43, 0.18);
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.gallery-grid figcaption {
  margin: 0;
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.4;
}

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

.testimonial {
  padding: 1.5rem;
  background: var(--brand-white);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
}

.testimonial strong {
  color: var(--brand-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  border-radius: 20px;
  background: var(--brand-white);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
}

form {
  display: grid;
  gap: 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

tbody tr + tr {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

td {
  padding: 0.65rem 0;
  color: var(--brand-slate);
}

footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-white);
}

.footer-description {
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-secondary);
}

.footer-grid table {
  margin: 0;
}

.footer-grid td {
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid td:first-child {
  width: 110px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.info-banner {
  background: #fff4f8;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-secondary);
  font-weight: 600;
}

.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(108, 99, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 6px rgba(244, 91, 141, 0.15);
}

.award-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(108, 99, 255, 0.08);
}

.award-card strong {
  color: var(--brand-primary);
}

.mobile-only {
  display: none;
}

.rich-text {
  background: var(--brand-white);
}

.rich-text .prose {
  background: var(--brand-cream);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  color: var(--brand-slate);
}

.doctor-bio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.doctor-photo img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.bio-text {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.rich-text h2 {
  color: var(--brand-dark);
}

.prose p + p {
  margin-top: 1rem;
}

.prose ul {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.prose ul li {
  list-style: disc;
  color: var(--brand-slate);
  margin-bottom: 0.5rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list span {
  background: rgba(244, 91, 141, 0.1);
  color: var(--brand-secondary);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
}

.cta-banner {
  background: linear-gradient(135deg, #fdf0ff, #e5e9ff);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cta-banner h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-bar .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(16, 12, 28, 0.85);
    backdrop-filter: blur(6px);
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    color: var(--brand-white);
    font-size: 1.25rem;
  }

  .mobile-menu .btn {
    width: 100%;
  }

  .stat-card h3 {
    font-size: 1.5rem;
  }

  .hero-carousel {
    min-height: 320px;
    border-radius: 20px;
  }

  .hero-carousel .slide {
    min-height: 320px;
  }

  .hero-full .hero-carousel {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }

  .hero-full .hero-carousel .slides,
  .hero-full .hero-carousel .slide {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .hero-full {
    margin: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-full + .cta-band {
    margin-top: 0 !important;
  }

  section.hero-full + section {
    margin-top: 0 !important;
  }

}

@media (max-width: 768px) {
  .nav-bar {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .hero-grid,
  .intro-layout,
  .doctor-bio,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid > *,
  .intro-text,
  .section-header,
  .doctor-bio,
  .contact-card {
    text-align: center;
  }

  .hero .hero-grid > div:first-child {
    grid-column: 1;
  }

  .hero .hero-grid > div:first-child .eyebrow,
  .hero .hero-grid > div:first-child h1 {
    text-align: center;
    width: 100%;
  }

  .hero .hero-grid > div:first-child h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    white-space: normal;
  }

  .hero-media {
    margin-top: 2rem;
  }

  .hero-media img {
    min-height: 300px;
    border-radius: 20px;
  }

  .hero p {
    text-align: left;
  }

  .hero .hero-stats,
  .intro .hero-stats {
    justify-items: center;
  }

  .hero .nav-actions,
  .highlight .nav-actions,
  .cta-band .nav-actions {
    justify-content: center;
  }

  .mega-grid div,
  .grid .card,
  .gallery-grid figure,
  .service-card {
    text-align: center;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-column .footer-links {
    align-items: center;
  }

  .hero-carousel {
    aspect-ratio: auto;
    min-height: 420px;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .hero-full .hero-carousel {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .hero-full .hero-carousel .slides,
  .hero-full .hero-carousel .slide {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .hero-full {
    margin: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-full + .cta-band {
    margin-top: 0 !important;
  }

  section.hero-full + section {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 1rem;
  }

  section.hero-full {
    padding: 0 !important;
  }

  .card,
  .service-card,
  .contact-card {
    padding: 1.5rem;
  }

  .hero {
    padding: 3rem 1rem 1.5rem;
  }

  .hero-media img {
    min-height: 280px;
    border-radius: 18px;
  }

  .hero-full .hero-carousel {
    min-height: 380px;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .hero-full .hero-carousel .slides,
  .hero-full .hero-carousel .slide {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .hero-full {
    margin: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-full + .cta-band {
    margin-top: 0 !important;
  }

  section.hero-full + section {
    margin-top: 0 !important;
  }

}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
  }

  .hero-carousel,
  .hero-full .hero-carousel {
    min-height: 340px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }

  .hero-media img {
    min-height: 250px;
    border-radius: 16px;
  }

  .hero-full .hero-carousel .slides,
  .hero-full .hero-carousel .slide {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .hero-full {
    margin: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-full + .cta-band {
    margin-top: 0 !important;
  }

  section.hero-full + section {
    margin-top: 0 !important;
  }
}

