:root {
  --bg-body: #ffffff;
  --text-main: #1f1f1f;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --border-input: #d1d5db;
  --green-1: #10b981;
  --green-2: #84cc16;
  --green-main: #1db954;
  --danger: #ef4444;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-panel: 10px;
  --transition-fast: 180ms ease-out;
  --transition-normal: 240ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.about-content-wrapper {
  margin-top: 190px;
}

.page-shell__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

header.app-header {
  position: relative;
  z-index: 10;
  height: 88px;
}

.app-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.app-logo__jet {
  color: var(--green-main);
}

.app-logo__ihale {
  color: var(--text-main);
}

.app-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.app-logo-slogan {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-logo-slogan span {
  color: var(--green-main);
  font-weight: 800;
}

.app-logo-wrapper--light .app-logo-slogan {
  color: rgba(255, 255, 255, 0.85);
}

.app-logo-wrapper--light .app-logo-slogan span {
  color: #ffffff;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .app-nav {
    gap: 12px;
  }
}

.app-nav__link {
  cursor: pointer;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-weight: 800;
  font-size: 20px;
}

@media (max-width: 768px) {
  .app-nav__link {
    font-size: 16px;
  }
}

.app-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: var(--green-1);
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 768px) {
  .app-nav__phone {
    font-size: 14px;
    padding: 6px 12px;
  }
}

.app-nav__phone-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

main.app-main {
  position: relative;
  flex: 1;
  display: flex;
}

.app-main__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px 0 40px;
}

footer.app-footer {
  position: relative;
  z-index: 999;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.02);
}

.app-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.app-footer__bottom {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  padding-top: 24px;
}

.app-footer__center {
  display: flex;
  align-items: center;
  /* gap: 8px; */
}

.app-footer__group-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: all var(--transition-fast);
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid transparent;
}

.app-footer__group-link:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.app-footer__group-link img {
  height: 20px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all var(--transition-fast);
}

.app-footer__group-link:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.app-footer__group-link span {
  font-size: 13px;
  color: #4b5563;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .app-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-bottom: 20px;
  }

  .app-footer__center,
  .app-footer__right {
    justify-content: center;
    width: 100%;
  }

  .app-footer__bottom {
    padding-top: 20px;
  }
}

.app-footer__right {
  display: flex;
  align-items: center;
  gap: 3px;
}

.app-footer__link {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  font-family: inherit;
  transition: opacity var(--transition-fast);
  line-height: 1;
}

.app-footer__link:hover {
  opacity: 0.7;
}

.app-footer__separator {
  font-size: 10px;
  color: #4b5563;
  font-weight: 300;
  margin: 0 4px;
  opacity: 0.8;
}

.app-decor {
  position: fixed;
  right: 100px;
  bottom: 30px;
  width: 100%;
  height: 85%;
  pointer-events: none;
  z-index: 0;
  display: none !important;
}

.app-decor__shape {
  position: absolute;
  inset: 0;
  background-image: url('../icons/j.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.app-decor__car {
  position: absolute;
  right: 40px;
  bottom: 0px;
  width: 620px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.32));
}

.app-decor__car img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 1921px) {
  .hero-left__bubble {
    position: absolute !important;
    width: 1060px !important;
    height: 120vh !important;
    left: -610px !important;
    top: -100 !important;
    border-radius: 100%;
    background: radial-gradient(circle at 20% 0%, var(--green-2), var(--green-1));
    transform: scale(1.2);
    display: block !important;
  }
}

@media (max-width: 1200px) {
  .app-decor {
    width: 340px;
    height: 220px;
    right: -80px;
  }

  .app-decor__car {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 1024px) {
  .app-decor {
    position: absolute;
    width: 260px;
    height: 180px;
    right: -60px;
    bottom: -40px;
    opacity: 0.85;
  }

  .hero-heading-main {
    background: radial-gradient(circle at 20% 0%, var(--green-2), var(--green-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .hero-left__content {
    padding-left: 0px !important;
  }

  .app-nav {
    display: none;
  }

  .app-decor__car {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition-normal), transform var(--transition-fast),
    box-shadow var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), opacity 140ms ease-out;
}

.btn--primary {
  color: #ffffff;
  background-image: linear-gradient(90deg, var(--green-1), var(--green-2));
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn--outline {
  background-color: #ffffff;
  color: var(--green-main);
  border: 1px solid rgba(16, 185, 129, 0.7);
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 150px;
}

.btn--outline:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  background-color: #f9fafb;
}

.btn--sm {
  padding: 6px 14px;
  font-size: 12px;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 100;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: none;
  transform: none;
}

.card-option {
  border-radius: 18px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    background-color var(--transition-fast);
}

.card-option__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}

.card-option__icon {
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #4b5563;
}

.card-option__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.card-option__pill {
  font-size: 11px;
  color: var(--text-muted);
  background-color: #f9fafb;
  padding: 3px 9px;
  border-radius: 999px;
}

.card-option--active {
  transform: translateY(-2px);
}

.card-option--active .card-option__icon {
  color: var(--green-main);
}

.card-option--active .card-option__label {
  color: var(--green-main);
}

.card-option:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.9);
  outline-offset: 2px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 170px);
  position: relative;
}

.hero-left {
  position: static;
  padding: 40px 0 40px 8px;
}

.hero-left__bubble {
  position: absolute;
  width: 1090px;
  height: 120vh;
  left: -630px;
  top: -250px;
  border-radius: 100%;
  background: radial-gradient(circle at 20% 0%, var(--green-2), var(--green-1));
}

.hero-left__content {
  position: relative;
  z-index: 2;
  color: #ecfdf5;
  padding-left: 24px;
}

.hero-kicker {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.9;
  color: black;
  line-height: 1.2;
}

.hero-heading-line {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-heading-line--small {
  font-size: 60px;
}

.hero-heading-main {
  font-size: 50px;
  font-weight: 800;
  line-height: 0.96;
  margin: 8px 0 16px;
}

.hero-highlight {
  display: inline-block;
  padding: 2px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  font-size: 14px;
  font-weight: 500;
}

.hero-right {
  position: relative;
  padding: 32px 0 32px 60px;
}

.hero-panel {
  position: relative;
  border-radius: 24px;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 999;
}

.hero-panel__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-panel__title span.highlight {
  color: var(--green-main);
}

.hero-panel__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-panel__options {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-bottom: 18px;
  justify-content: space-between;
  padding: 50px 0;
}

@media only screen and (max-width: 500px) {
  #app-main {
    padding: 30px !important;
  }

  .hero-panel {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .hero-panel__options {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    width: max-content;
  }

  .card-option {
    width: 100%;
    padding: 16px;
  }
}

.hero-panel__footer {
  margin-top: 8px;
  display: flex;
  gap: 20px;
}

@media (max-width: 480px) {
  .hero-panel__footer {
    width: 320px;
  }

  .hero-panel__footer .btn {
    width: 100%;
  }
}

.hero-panel__helper {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel {
  border-radius: 18px;
  padding: 12px 0 14px;
  width: 100%;
}

.carousel__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel__header,
.carousel__title,
.carousel__controls {
  display: none;
}

.carousel__grid-container {
  flex: 1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .carousel__grid-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
  }

  .carousel__grid-container::-webkit-scrollbar {
    display: none;
  }
}

.carousel__btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #ffffff;
  color: var(--green-main);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}



.carousel__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background-color: #f0fdf4;
  border-color: var(--green-main);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

.carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background-color: #f9fafb;
}

.carousel__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

@media (max-width: 768px) {
  .carousel__grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: none;
    gap: 12px;
    width: max-content;
    padding: 0 10px;
  }
}

.carousel__item {
  padding: 10px 4px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f9fafb;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    background-color var(--transition-fast);
}

@media (max-width: 768px) {
  .carousel__item {
    width: 85px;
    min-height: 80px;
    scroll-snap-align: start;
  }
}

.carousel__item-img {
  max-height: 32px;
  max-width: 56px;
  object-fit: contain;
  pointer-events: none;
}

.carousel__item--active {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--green-main);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.carousel__item--active .carousel__item-img {
  /*filter: brightness(0) saturate(100%) invert(58%) sepia(68%) saturate(457%) hue-rotate(122deg) brightness(95%) contrast(91%);*/
}

.carousel__item:hover:not(.carousel__item--active) {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
}

.carousel__item:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.9);
  outline-offset: 2px;
}

/* Brand name fallback (no logo) */
.carousel__item-fallback {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--green-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.carousel__item-name {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #4b5563;
  text-align: center;
  line-height: 1.1;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carousel__item--active .carousel__item-fallback {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.carousel__item--active .carousel__item-name {
  color: var(--green-main);
  font-weight: 700;
}

/* Carousel loading spinner */
.carousel-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.carousel-loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-top-color: var(--green-main);
  border-radius: 50%;
  animation: carousel-spin 0.7s linear infinite;
}

@keyframes carousel-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Carousel empty state */
.carousel-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 0;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 8px;
  margin-bottom: 8px;
  gap: 5px 20px;
}

.year-grid__item {
  border-radius: 12px;
  border: none;
  padding: 8px 4px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  transition: background-color var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
  font-weight: 800;
  color: #000;
}

.year-grid__item--active {
  color: var(--green-main);
  transform: translateY(-1px);
}

.year-grid__item:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.9);
  outline-offset: 1px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.25fr) minmax(0, 0.5fr);
  align-items: flex-start;
  min-height: calc(100vh - 190px);
  padding-top: 12px;
}

.stepper {
  padding-top: 16px;
}

.stepper__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#app-main {
  background: #fff;
  padding: 60px;
}

.stepper__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stepper__header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 24px;
  width: 100%;
}

.stepper__badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: none;
  background-color: #b3b3b3;
  color: white;
  position: relative;
  z-index: 2;
}

.stepper__badge--active {
  background: var(--green-main);
  color: #ffffff;
}

.stepper__title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.stepper__line {
  position: absolute;
  top: 32px;
  left: 16px;
  right: -24px;
  height: 14px;
  background: transparent;
  pointer-events: none;
  width: 90%;
}

.stepper__line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
}

.stepper__line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
}

.stepper__line--active::before,
.stepper__line--active::after {
  background: var(--green-main);
}

.stepper__summary {
  margin-left: 44px;
  margin-top: -30px;
  padding-bottom: 10px;
  font-size: 10px;
  color: #6b7280;
  max-width: 240px;
  position: relative;
  z-index: 1;
}

.stepper__change-pill {
  margin-left: auto;
  position: relative;
  z-index: 10;
}

.pill-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #ef4444;
  color: #ef4444;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-change:hover {
  background-color: #fee2e2;
}

.pill-change__icon {
  font-size: 10px;
}

.form-panel {
  padding: 20px 22px 22px;
  border: honeydew;
  background-color: #ffffff;
  position: relative;
}

.form-panel__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-panel__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.form-panel__notice {
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: none;
  color: #16a34a;
  font-size: 13px;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px 18px;
}

.form-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
}

.form-label span.required {
  color: var(--danger);
}

.form-control,
.form-select,
.form-textarea {
  font-size: 14px;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid var(--border-input);
  background-color: #ffffff;
  color: var(--text-main);
  outline: none;
  height: 44px;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(16, 185, 129, 0.9);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.3);
}

.form-control[aria-invalid='true'],
.form-select[aria-invalid='true'],
.form-textarea[aria-invalid='true'] {
  border-color: rgba(239, 68, 68, 0.8);
}

.form-textarea {
  min-height: 82px;
  resize: vertical;
}

.form-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.form-error {
  font-size: 11px;
  color: var(--danger);
}

.form-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.form-footer__left {
  margin-right: auto;
  font-size: 11px;
  color: var(--text-muted);
}

.input-compact {
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-prefix {
  min-width: 48px;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-input);
  background-color: #f9fafb;
  font-size: 13px;
  text-align: center;
  color: var(--text-muted);
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
}

.checkbox-card__icon {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.65);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(132, 204, 22, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green-main);
}

.checkbox-card__body {
  font-size: 12px;
  color: var(--text-main);
}

.checkbox-card__meta {
  margin-top: 2px;
  font-size: 11px;
  color: var(--danger);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\25bc';
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--text-muted);
  pointer-events: none;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

/* Adım 2: Hasar & Tramer Özelleştirmeleri */
.form-panel--damage {
  padding: 10px 30px 30px;
  width: 600px;
}

.damage-instruction {
  text-align: center;
  color: #10b981;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}

.damage-top-layout {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .damage-top-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }
}

.damage-map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 330px;
}

.damage-map__svg-wrapper {
  width: 100%;
  max-width: 320px;
  position: relative;
}

.damage-map__dots-layer {
  display: none;
}

.damage-map__svg-wrapper path {
  pointer-events: none;
}

.damage-map__svg-wrapper path[data-part] {
  transition: fill 0.2s, opacity 0.2s;
  cursor: pointer;
  pointer-events: auto;
}

.damage-map__svg-wrapper path[data-part]:hover {
  filter: brightness(0.9);
}

.damage-popup {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  z-index: 10000;
  border: 1px solid #e5e7eb;
  pointer-events: auto;
  transform: translate(-50%, -100%);
  margin-top: -10px;
  animation: popupScaleIn 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.damage-status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background-color 0.15s;
}

.damage-status-item:hover {
  background-color: #f3f4f6;
}

.damage-status-label {
  font-size: 10px;
  font-weight: 700;
  color: #4b5563;
  text-transform: capitalize;
  white-space: nowrap;
}

@keyframes popupScaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -90%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
  }
}

.damage-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}

.damage-status-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #e5e7eb;
  cursor: pointer;
  transition: transform 0.15s;
  padding: 0;
}

.damage-status-btn:hover {
  transform: scale(1.2);
}

.damage-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}

.damage-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.damage-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.preview-panel {
  background-color: #f3f4f6;
  border-radius: 20px;
  padding: 24px;
  min-height: 280px;
}

.preview-panel__title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.preview-panel__car-info {
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}

.preview-panel__car-subinfo {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
}

.preview-panel__group {
  margin-bottom: 12px;
}

.preview-panel__group-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.preview-panel__group-items {
  font-size: 13px;
  color: #4b5563;
}

.damage-divider {
  height: 1px;
  background-color: #10b981;
  opacity: 0.3;
  margin: 10px 0 20px;
}

.tramer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .tramer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-panel--damage {
    padding: 10px 30px 30px;
    width: 100%;
  }

  .damage-map-container {
    width: 100%;
  }
}

/* Adım 3: Teklif Al Özelleştirmeleri */
.form-panel--contact {
  padding: 20px 30px 30px;
}

.form-panel--contact .form-panel__title {
  color: #10b981;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-panel--contact .form-panel__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
}

.contact-form-grid .form-field:nth-child(1) {
  /* Ad Soyad - first row, first column */
  grid-column: 1;
  grid-row: 1;
}

.contact-form-grid .form-field:nth-child(2) {
  /* Plaka - first row, spans columns 2-3 */
  grid-column: 2 / 4;
  grid-row: 1;
}

.contact-form-grid .form-field:nth-child(3) {
  /* Cep Telefonu - second row, first column (same width as Ad Soyad) */
  grid-column: 1;
  grid-row: 2;
}

.contact-form-grid .form-field:nth-child(4) {
  /* Bulunduğunuz İl - second row, second column */
  grid-column: 2;
  grid-row: 2;
}

.contact-form-grid .form-field:nth-child(5) {
  /* Bulunduğunuz İlçe - second row, third column */
  grid-column: 3;
  grid-row: 2;
}

@media (max-width: 768px) {

  .contact-form-grid .form-field:nth-child(1),
  .contact-form-grid .form-field:nth-child(2),
  .contact-form-grid .form-field:nth-child(3),
  .contact-form-grid .form-field:nth-child(4),
  .contact-form-grid .form-field:nth-child(5) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

.contact-checkbox-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.checkbox-card input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #10b981;
}

.checkbox-card__body {
  flex: 1;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}

.checkbox-card__meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.form-footer--contact {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
}

.result-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 190px);
  padding: 40px 60px;
  position: relative;
}

@media (max-width: 1200px) {
  .result-layout {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .result-layout {
    padding: 12px 10px;
    gap: 16px;
  }
}

/* Sol Kart - Teklif Özeti */
.result-summary-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin: 0 40px 20px;
}

@media (max-width: 768px) {
  .result-summary-card {
    margin: 0 16px 20px;
    padding: 16px;
  }
}

.result-summary-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 20px 40px 12px;
}

@media (max-width: 768px) {
  .result-summary-card__title {
    margin: 12px 12px 8px;
    font-size: 16px;
    text-align: left;
  }
}

.result-summary-card__vehicle {
  margin-bottom: 24px;
  /* background: #f9fafb; */
  /* border: 1px solid #e5e7eb; */
  border-radius: 12px;
  padding: 20px;
}

.result-vehicle-name {
  font-size: 19px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}

.result-vehicle-details {
  font-size: 19px;
  color: #6b7280;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  line-height: 1.4;
}

.detail-separator {
  color: #d1d5db;
  font-weight: bold;
}

@media (max-width: 768px) {
  .result-vehicle-name {
    font-size: 17px;
  }

  .result-vehicle-details {
    font-size: 14px;
    gap: 2px 8px;
  }
}

/* Hasar Listesi Özeti */
.result-damage-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
}

.result-damage-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #374151;
  padding: 6px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.result-damage-list__item:last-child {
  border-bottom: none;
}

.result-damage-list__item span {
  text-transform: capitalize;
  font-weight: 500;
}

.result-damage-list__item strong {
  font-weight: 800;
  font-size: 13px;
}

/* Durum Renkleri */
.status--boyalı,
.status--lokal {
  color: #d97706;
}

/* Turuncu */
.status--değişmiş {
  color: #dc2626;
}

/* Kırmızı */
.status--hasarlı {
  color: #2563eb;
}

/* Mavi */

.result-damage-list__empty {
  text-align: center;
  padding: 12px 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

/* Sağ Kart - Teklif */
.result-offer-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  color: #000;
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
  .result-offer-card {
    width: 100%;
  }
}

.result-offer-card__header {
  position: relative;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #0ea765 0%, #33b966 35%, #73cf4d 100%);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .result-offer-card__header {
    padding: 24px 20px;
    margin-bottom: 20px;
  }
}

.result-offer-label {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 1;
  color: #ffffff;
}

.result-offer-price {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1;
}

@media (max-width: 768px) {
  .result-offer-price {
    font-size: 30px;
  }
}

.result-offer-check {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  z-index: 10;
}

.result-offer-check svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
  .result-offer-check {
    right: 0;
    top: 50%;
    width: 70px;
    height: 90px;
  }
}

.result-offer-card__meta {
  position: relative;
  z-index: 2;
  color: #000;
  padding: 30px 40px 40px;
}

.result-offer-code {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

.result-offer-desc {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 24px;
}

.result-offer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.result-offer-contacts a {
  color: #26b158;
  text-decoration: none;
  transition: opacity 0.2s;
}

.result-offer-contacts a:hover {
  opacity: 0.8;
}

/* Dekoratif Araba */
.result-decor {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 50%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.result-decor__car {
  width: 100%;
  height: auto;
}

.result-decor__car img {
  width: 100%;
  height: auto;
  display: block;
  /* filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15)); */
}

.result-summary {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 16px;
  background-color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.result-summary__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.result-summary__trim {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.result-table th,
.result-table td {
  border: 1px solid #e5e7eb;
  padding: 6px 6px;
  text-align: center;
}

.result-table th:first-child,
.result-table td:first-child {
  text-align: left;
  min-width: 130px;
}

.result-table thead {
  background-color: #f9fafb;
}

.result-table__mark {
  color: var(--green-main);
  font-weight: 700;
}

.result-offer {
  position: relative;
  border-radius: 22px;
  padding: 22px 24px 20px;
  background-image: linear-gradient(120deg, var(--green-1), var(--green-2));
  color: #ecfdf5;
  box-shadow: 0 24px 60px rgba(5, 150, 105, 0.55);
  overflow: hidden;
}

.result-offer__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.95;
}

.result-offer__price {
  font-size: 34px;
  font-weight: 800;
  margin: 8px 0 16px;
}

.result-offer__circle {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(4, 120, 87, 0.7);
  font-size: 32px;
}

.result-offer__meta {
  margin-top: 26px;
  font-size: 13px;
}

.result-offer__code {
  font-weight: 600;
}

.result-offer__desc {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.95;
}

.result-offer__contacts {
  margin-top: 14px;
  font-size: 12px;
}

.result-offer__contacts a {
  color: #d1fae5;
  font-weight: 500;
}

.view-container {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.view-container--active {
  opacity: 1;
  transform: translateY(0);
}

.view-container--fade-out {
  opacity: 0;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .hero-left__bubble {
    width: 420px;
    height: 420px;
    left: -180px;
  }

  .hero-heading-main {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  header.app-header {
    height: auto;
    background: radial-gradient(circle at 20% 0%, var(--green-2), var(--green-1));
  }

  .app-header__inner {
    padding: 10px 0;
    gap: 16px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-left {
    order: 1;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .hero-left__bubble {
    left: -200px;
    top: 20%;
    opacity: 0.75;
    display: none;
  }

  .hero-right {
    order: 2;
    padding-left: 0;
  }

  .hero-panel {
    margin-top: 12px;
    text-align: center;
    /* display: flex; */
    align-items: center;
    /* justify-content: center; */
  }

  .form-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .result-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .damage-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .year-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .carousel__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .year-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form-decor {
  position: absolute;
  right: -50%;
  bottom: 12px;
  width: 50%;
  height: auto;
  z-index: 5;
  pointer-events: none;
}

.form-decor__shape {
  display: none;
  /* Basitleştirmek için şekli kaldırdım */
}

.form-decor__car {
  width: 100%;
}

.form-decor__car img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .form-decor {
    display: none;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-view {
  padding: 0;
  max-width: 100%;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 100px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.about-hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.6;
}

/* Section Base */
.about-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-section__title {
  font-size: 40px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.about-section__title--center {
  text-align: center;
}

.about-section__description {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

/* Mission Section */
.about-mission {
  background: #f9fafb;
}

.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-mission__text {
  padding-right: 20px;
}

.about-mission__image {
  display: flex;
  justify-content: center;
}

.about-image-card {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.about-image-card:hover {
  transform: rotate(0deg) translateY(-8px);
}

.about-image-card__icon {
  font-size: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.about-image-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-image-card p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Stats Section */
.about-stats {
  background: #ffffff;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-stat-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  border-color: #10b981;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.about-stat-card__number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.about-stat-card__label {
  font-size: 16px;
  color: #6b7280;
  font-weight: 600;
}

/* Advantages Section */
.advantages-section {
  background: #fdfdfd;
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.advantage-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-12px);
  border-color: rgba(16, 185, 129, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.advantage-card__icon-wrap {
  width: 100px;
  height: 70px;
  background: linear-gradient(135deg, #fffb00 0%, #ffe600 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: all 0.4s ease;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

.advantage-card:hover .advantage-card__icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 10px 20px rgba(255, 230, 0, 0.3);
}

.advantage-card__icon {
  font-size: 36px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.advantage-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0;
  max-width: 180px;
  letter-spacing: -0.02em;
}

.advantages-footer {
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-footer p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
  opacity: 0.8;
}

.advantages-footer a {
  color: var(--green-main);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.advantages-footer a:hover {
  color: var(--green-2);
}

@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .advantage-card {
    flex-direction: row;
    padding: 24px 20px;
    text-align: left;
    gap: 20px;
  }

  .advantage-card__icon-wrap {
    margin-bottom: 0;
    width: 80px;
    height: 56px;
    flex-shrink: 0;
  }

  .advantage-card__title {
    max-width: none;
    font-size: 16px;
  }
}

/* CTA Section */
.about-cta {
  background: #ffffff;
  padding: 100px 60px;
}

.about-cta__card {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.about-cta__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.about-cta__title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.about-cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.about-cta__button {
  background: #ffffff;
  color: #10b981;
  font-size: 18px;
  padding: 16px 40px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero {
    padding: 80px 40px 60px;
  }

  .about-hero__title {
    font-size: 42px;
  }

  .about-section {
    padding: 60px 40px;
  }

  .about-mission__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-cta {
    padding: 60px 40px;
  }

  .about-cta__card {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 24px 40px;
  }

  .about-hero__title {
    font-size: 32px;
  }

  .about-hero__subtitle {
    font-size: 16px;
  }

  .about-section {
    padding: 40px 24px;
  }

  .about-section__title {
    font-size: 28px;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card__number {
    font-size: 36px;
  }

  .about-cta__card {
    padding: 40px 24px;
  }

  .about-cta__title {
    font-size: 28px;
  }
}

/* Hero Bodytype Specific Decor */
.hero-bodytype-decor {
  position: absolute;
  right: -50px;
  bottom: -40px;
  width: 40%;
  pointer-events: none;
  z-index: 0;
}

.hero-bodytype-decor__img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .hero-bodytype-decor {
    width: 600px;
    right: -100px;
  }
}

@media (max-width: 1024px) {
  .hero-bodytype-decor {
    width: 100%;
    right: 0;
    bottom: 0;
    opacity: 1;
    position: relative;
    margin-top: 20px;
  }
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  right: 0;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
    margin-right: 30px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu--active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  position: absolute;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100%;
  background: #ffffff;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu--active .mobile-menu__inner {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-menu__link {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--green-main);
}

.mobile-menu__footer {
  margin-top: auto;
}

.mobile-menu__phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 8px;
}

.mobile-menu__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  header.app-header .app-logo {
    z-index: 1002;
  }
}

/* Hamburger icon colors on mobile header */
@media (max-width: 1024px) {
  .mobile-menu-toggle .bar {
    background-color: #ffffff;
    /* White bars on green background */
  }
}

/* Mobile menu link hover state */
.mobile-menu__link {
  position: relative;
  overflow: hidden;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-main);
  transition: width 0.3s ease;
}

.mobile-menu__link:hover::after {
  width: 100%;
}