/* ============================================
   GYÓGYMASSZÁZS, FRIDERIKUSZ ISTVÁN
   Teljes CSS: világos & sötét mód
   ============================================ */

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

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Világos mód (alapértelmezett) */
  --color-primary: #C62828;
  --color-primary-hover: #A31D1D;
  --color-accent: #E65100;
  --color-accent-light: rgba(230, 81, 0, 0.10);
  --color-bg: #FFF8F5;
  --color-surface: #FFFFFF;
  --color-surface-hover: #FFF0EB;
  --color-text: #2D2D2D;
  --color-text-muted: #6B6B6B;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-hero-shape-1: rgba(198, 40, 40, 0.08);
  --color-hero-shape-2: rgba(230, 81, 0, 0.06);
  --color-hero-shape-3: rgba(198, 40, 40, 0.05);
  --color-stars: #E65100;
  --color-timeline-line: rgba(198, 40, 40, 0.15);
  --color-badge-bg: rgba(198, 40, 40, 0.08);
  --color-badge-text: #C62828;
  --color-input-bg: #FFFFFF;
  --color-input-border: rgba(0, 0, 0, 0.12);
  --color-input-focus: #C62828;
  --color-footer-bg: #2D2D2D;
  --color-footer-text: #CCCCCC;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-navbar: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-btn: 0 4px 16px rgba(198, 40, 40, 0.25);
  --shadow-btn-hover: 0 6px 24px rgba(198, 40, 40, 0.35);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-theme: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- SÖTÉT MÓD ---------- */
[data-theme="dark"] {
  --color-primary: #B39DDB;
  --color-primary-hover: #9575CD;
  --color-accent: #9575CD;
  --color-accent-light: rgba(149, 117, 205, 0.12);
  --color-bg: #1A1A2E;
  --color-surface: #22223A;
  --color-surface-hover: #2A2A48;
  --color-text: #E8E8F0;
  --color-text-muted: #A0A0B8;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-hero-shape-1: rgba(179, 157, 219, 0.08);
  --color-hero-shape-2: rgba(149, 117, 205, 0.06);
  --color-hero-shape-3: rgba(179, 157, 219, 0.04);
  --color-stars: #B39DDB;
  --color-timeline-line: rgba(179, 157, 219, 0.2);
  --color-badge-bg: rgba(179, 157, 219, 0.12);
  --color-badge-text: #B39DDB;
  --color-input-bg: #22223A;
  --color-input-border: rgba(255, 255, 255, 0.1);
  --color-input-focus: #B39DDB;
  --color-footer-bg: #12121F;
  --color-footer-text: #8888A0;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-navbar: 0 2px 20px rgba(0, 0, 0, 0.3);
  --shadow-btn: 0 4px 16px rgba(179, 157, 219, 0.2);
  --shadow-btn-hover: 0 6px 24px rgba(179, 157, 219, 0.3);
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color var(--transition-theme), color var(--transition-theme);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-navbar);
  transition: background-color var(--transition-theme), border-color var(--transition-theme), box-shadow var(--transition-theme);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  text-decoration: none;
}

.navbar__logo:hover {
  color: var(--color-primary);
}

.navbar__logo-icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform var(--transition-smooth);
}

.navbar__logo:hover .navbar__logo-icon {
  transform: rotate(90deg);
}

.navbar__logo-subtitle {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  line-height: 1;
}

.navbar__nav {
  display: flex;
  gap: var(--space-lg);
}

.navbar__link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.navbar__link:hover {
  color: var(--color-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ---------- THEME TOGGLE ---------- */
.theme-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  cursor: pointer;
  transition: background var(--transition-theme);
  overflow: hidden;
}

.theme-toggle__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  color: var(--color-primary);
}

.theme-toggle__icon--sun {
  left: 6px;
  opacity: 1;
}

.theme-toggle__icon--moon {
  right: 6px;
  opacity: 0;
}

[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 0;
  transform: translateY(-50%) rotate(-90deg);
}

[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

/* ---------- HAMBURGER ---------- */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.btn--primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Lucide <i> wrapper igazítás */
.btn__icon i,
.contact-info__icon i {
  display: flex;
  align-items: center;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: background var(--transition-theme);
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: var(--color-hero-shape-1);
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -100px;
  background: var(--color-hero-shape-2);
}

.hero__shape--3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 40%;
  background: var(--color-hero-shape-3);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 45%, transparent 100%);
  z-index: 0;
}

@media (max-width: 900px) {
  .hero__bg-overlay {
    background: linear-gradient(to bottom, var(--color-bg) 45%, transparent 100%);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__cta-wrapper {
  position: relative;
  display: inline-block;
}

.hero__pointer-image {
  position: absolute;
  top: 100%;
  left: 100%;
  height: 20vh;
  width: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform-origin: top left;
  animation: pointerMoveShrink 2s cubic-bezier(0.25, 1, 0.5, 1) 5s both;
}

@keyframes pointerMoveShrink {
  0% {
    opacity: 0;
    transform: translate(60vw, 35vh) scale(4.25);
  }

  20% {
    opacity: 1;
    transform: translate(60vw, 15vh) scale(4.25);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 1200px) {
  @keyframes pointerMoveShrink {
    0% {
      opacity: 0;
      transform: translate(45vw, 35vh) scale(3.5);
    }

    20% {
      opacity: 1;
      transform: translate(45vw, 15vh) scale(3.5);
    }

    100% {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }
  }
}

@media (max-width: 900px) {
  .hero__pointer-image {
    display: none;
  }
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero__title-accent {
  color: var(--color-primary);
  transition: color var(--transition-theme);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero__cta {
  font-size: 1.1rem;
  padding: 16px 36px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--space-2xl) 0;
}

.section__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
}

/* ---------- CARDS (BENEFITS) ---------- */
.cards {
  display: grid;
  gap: var(--space-md);
}

.cards--benefits {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.card__icon {
  font-size: 2.4rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  transition: color var(--transition-theme);
}

.card__icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.card__text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- SERVICE CARDS ---------- */
.cards--services {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-text);
}

.service-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  transition: background var(--transition-theme), color var(--transition-theme);
}

.service-card__text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.service-card__footer {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.service-card__duration {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.duration-icon {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

/* ---------- TIMELINE (HOGYAN) ---------- */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-timeline-line);
  transition: background var(--transition-theme);
}

.timeline__step {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline__step:last-child {
  margin-bottom: 0;
}

.timeline__number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition-theme), box-shadow var(--transition-theme);
}

.timeline__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.timeline__text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.cards--testimonials {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

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

.testimonial__stars {
  color: var(--color-stars);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-theme);
}

.testimonial__quote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  border: none;
  padding: 0;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ---------- CONTACT ---------- */
.section--contact {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  transition: background var(--transition-theme), border-color var(--transition-theme);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 400px;
  margin: 0 auto;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-info__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
  transition: color var(--transition-theme);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.contact-info__item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-text);
}

.contact-info__link {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-info__text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- FORM ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-sm);
  background: var(--color-input-bg);
  color: var(--color-text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-theme);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-input:focus {
  border-color: var(--color-input-focus);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

[data-theme="dark"] .form-input:focus {
  box-shadow: 0 0 0 3px rgba(179, 157, 219, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-footer-bg);
  padding: var(--space-md) 0;
  transition: background var(--transition-theme);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--color-footer-text);
}

.footer__link {
  font-size: 0.85rem;
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: #FFFFFF;
}

/* ---------- ANIMATIONS ---------- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 {
  transition-delay: 0.12s;
}

.anim-delay-2 {
  transition-delay: 0.24s;
}

.anim-delay-3 {
  transition-delay: 0.36s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .navbar__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
    padding-top: 70px;
    padding-bottom: var(--space-xl);
    align-items: flex-start;
  }

  .hero__content {
    padding: var(--space-md) var(--space-md);
    text-align: center;
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
  }

  .hero__shape--1 {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -80px;
  }

  .hero__shape--2 {
    width: 250px;
    height: 250px;
    bottom: -30px;
    left: -60px;
  }

  .hero__shape--3 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 30%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline__number {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
  }

  .hero__title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero__cta {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero__shape--1 {
    width: 200px;
    height: 200px;
  }

  .hero__shape--2 {
    width: 160px;
    height: 160px;
  }

  .hero__shape--3 {
    display: none;
  }
}