body.korporativ-page {
  background-color: rgba(17, 1, 31, 1);
}

[data-theme="dark"] body.korporativ-page {
  background-color: #000727;
}

[data-theme="dark"] body.korporativ-page header {
  background-color: #000727 !important;
}

[data-theme="dark"] body.korporativ-page header .container {
  background-color: transparent;
}

[data-theme="dark"] body.korporativ-page nav {
  background-color: transparent;
}

/* Header elements on korporativ page must remain white in all themes for readability */
body.korporativ-page header nav ul li a,
body.korporativ-page header nav ul li a span {
  color: #ffffff !important;
}

body.korporativ-page header nav ul li a svg path {
  stroke: #ffffff !important;
}

body.korporativ-page header .logo .logo-light-img {
  display: none !important;
}

body.korporativ-page header .logo .logo-dark-img {
  display: block !important;
}

body.korporativ-page header .burger span {
  background-color: #ffffff !important;
}

/* ── NAV ── */
nav ul li a {
  display: flex;
  align-items: center;
  color: rgba(213, 210, 210, 0.62);
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  gap: 8px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: rgba(142, 255, 1, 1);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(213, 210, 210, 0.62);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
}

.dropdown-menu li a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 20px;
  width: 0;
  height: 2px;
  background: rgba(142, 255, 1, 1);
  transition: width 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(142, 255, 1, 0.1);
  color: rgba(142, 255, 1, 1);
}


/* ── TEMA ── */
.theme-toggle {
  background: rgba(17, 1, 31, 1);
  border: 2px solid rgba(142, 255, 1, 1);
  border-radius: 24px;
  padding: 4px;
  display: flex;
  gap: 4px;
  position: relative;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(17, 1, 31, 1);
  border: 2px solid rgba(142, 255, 1, 1);
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease;
  z-index: 1;
}

[data-theme="dark"] .theme-toggle::before {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(36px);
}

.theme-toggle button {
  background: transparent;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

.theme-toggle button.active {
  animation: pulse 2s infinite;
}

.theme-toggle button.active img {
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.theme-toggle button:not(.active) img {
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

[data-theme="dark"] .theme-toggle button.active {
  animation: pulse-dark 2s infinite;
}

@keyframes pulse-dark {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.2);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 26, 26, 0);
  }
}

.theme-toggle button img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

/* ── ANİMASİYA ── */
@keyframes borderAnimation {
  0% {
    border-color: rgba(142, 255, 1, 1);
    box-shadow: 0 0 10px rgba(142, 255, 1, 1), inset 0 0 10px rgba(142, 255, 1, 1);
  }

  50% {
    border-color: rgba(142, 255, 1, 1);
    box-shadow: 0 0 20px rgba(142, 255, 1, 1), inset 0 0 20px rgba(142, 255, 1, 1);
  }

  100% {
    border-color: rgba(142, 255, 1, 1);
    box-shadow: 0 0 10px rgba(142, 255, 1, 1), inset 0 0 10px rgba(142, 255, 1, 1);
  }
}

/* ── HERO ── */
.hero-section {
  background: url("../Image/low-poly-network-transparent.png") center/cover no-repeat;
  width: 100%;
  min-height: 405px;
  height: auto;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 60px;
}

.hero-content h1 {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
}

.hero-content span {
  color: rgba(142, 255, 1, 1);
}

.hero-content p {
  color: rgba(158, 158, 158, 1);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 20px;
}

/* ── KURSLAR ── */
.courses-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.courses-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.courses-section:first-child .section-3-card-item:nth-child(2) {
  order: 3;
}

.section-3-card-item {
  background: rgba(2, 1, 4, 1);
  box-sizing: border-box;
}

.section-3-card-item h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 20px;
}

/* ── TƏKLİF ── */
.teklif-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
  padding: 0 20px;
}

.teklif-content h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 56px;
  text-align: center;
}

.teklif-content p {
  color: rgba(158, 158, 158, 1);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.teklif-divider {
  width: 100%;
  margin: 80px 0;
}

.teklif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.teklif-card {
  padding: 60px;
  border-radius: 10px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.teklif-card-spacer {
  backdrop-filter: blur(20px) saturate(120%);
  background: rgba(91, 3, 163, 0.068);
  border: 4px solid rgba(91, 3, 163, 0.2);
  padding: 55px;
  border-radius: 22px;
  margin: 0 auto;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.teklif-card h3 {
  color: rgba(142, 255, 1, 1);
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 82px;
  text-align: center;
  margin: 0;
}

.teklif-card-spacer h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.teklif-card-spacer p {
  color: rgba(158, 158, 158, 1);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

/* ── TƏRƏFDAŞ RƏYLƏRİ ── */
.tərəfdaşlarımızın-rəyi {
  margin-top: 100px;
}

.tərəfdaşlarımızın-rəyi-bg {
  background: url("../Image/Group 47238.svg") no-repeat top center;
  background-size: cover;
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  padding: 250px 0 100px;
}

.tərəfdaşlarımızın-rəyi h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.tərəfdaşlarımızın-rəyi-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0 20px;
}

.tərəfdaşlarımızın-rəyi-card-1,
.tərəfdaşlarımızın-rəyi-card-2 {
  width: 45%;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 30px 40px;
  box-sizing: border-box;
}

/* Köhnə sabit margin-left silindi, flex ilə idarə olunur */
.tərəfdaşlarımızın-rəyi-card-2 {
  margin-left: 50%;
}

.tərəfdaşlarımızın-rəyi-card-1 {
  margin-left: 5%;
}


.quote-mark {
  font-size: 24px;
}

.quote-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(187, 196, 213, 1);
  margin-bottom: 20px;
}

.divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.12);
  margin: 28px 0;
}

.rəylər-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.person {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #2a2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar svg {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.person-name {
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #fff;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.person-role {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.rəylər-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 47px;
  margin-left: 30px;
}

/* ── MARQUEE ── */
.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── FORM ── */
.form-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
  padding: 60px;
  border-radius: 22px;
  box-sizing: border-box;
}

.form-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  margin-bottom: 50px;
}

.form-title span {
  color: rgba(142, 255, 1, 1);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.form-field label {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 12px;
}

.form-field input,
.form-field select {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(142, 255, 1, 0.5);
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.3s ease;
}

.form-field input::placeholder {
  color: rgba(158, 158, 158, 0.6);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(142, 255, 1, 1);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(142, 255, 1, 0.3);
}

.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.08) inset;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-submit {
  padding: 10px 70px;
  background: linear-gradient(45deg, rgba(142, 255, 1, 0.9), rgba(142, 255, 1, 1));
  color: rgba(17, 1, 31, 1);
  border: 2px solid rgba(142, 255, 1, 1);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(142, 255, 1, 0.4);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:active {
  transform: translateY(0);
}

/* ── DROPDOWN ── */
#dropdown-toggle,
#dropdown-toggle-entity {
  display: none;
}

#dropdown-toggle:checked~label,
#dropdown-toggle-entity:checked~label {
  border-color: rgba(142, 255, 1, 1);
  box-shadow: 0 0 12px rgba(142, 255, 1, 0.3);
}

#dropdown-toggle:checked~label #arrow,
#dropdown-toggle-entity:checked~label #arrow-entity {
  transform: rotate(180deg);
}

label[for="dropdown-toggle"],
label[for="dropdown-toggle-entity"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(142, 255, 1, 0.5);
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

label[for="dropdown-toggle"]:hover,
label[for="dropdown-toggle-entity"]:hover {
  border-color: rgba(142, 255, 1, 0.7);
}

#selected-text,
#selected-entity-text {
  color: rgba(158, 158, 158, 0.6);
  display: block;
}

#arrow,
#arrow-entity {
  color: rgba(142, 255, 1, 1);
  transition: transform 0.3s ease;
  font-size: 14px;
}

.absolute.left-0.w-full {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: rgba(2, 1, 4, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(142, 255, 1, 0.3);
  border-radius: 12px;
  margin-top: 8px;
}

#dropdown-toggle:checked~.absolute.left-0.w-full,
#dropdown-toggle-entity:checked~.absolute.left-0.w-full {
  display: flex;
}

.absolute.left-0.w-full label {
  display: block;
  position: relative;
}

.absolute.left-0.w-full label input[type="radio"] {
  display: none;
}

.absolute.left-0.w-full label span {
  display: block;
  min-width: 200px;
  padding: 12px 16px;
  background: transparent;
  border: 2px solid rgba(142, 255, 1, 0.4);
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.absolute.left-0.w-full label span:hover {
  border-color: rgba(142, 255, 1, 0.8);
  background: rgba(142, 255, 1, 0.08);
}

.absolute.left-0.w-full label input[type="radio"]:checked+span {
  background: rgba(142, 255, 1, 0.15);
  border-color: rgba(142, 255, 1, 1);
  color: rgba(142, 255, 1, 1);
}

/* ════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
    line-height: 66px;
  }

  .teklif-card h3 {
    font-size: 52px;
    margin: 40px 0;
  }

  .teklif-card-spacer {
    padding: 35px;
  }

  .teklif-card-spacer h3 {
    font-size: 20px;
  }

  .teklif-card-spacer p {
    font-size: 15px;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    width: 46%;
    padding: 30px 30px;
  }

  .rəylər-footer-logo {
    margin-left: 20px;
  }
}

/* ── 1024px ── */
@media (max-width: 1024px) {

  /* Hero */
  .hero-content {
    padding: 80px 20px 50px;
  }

  .hero-content h1 {
    font-size: 44px;
    line-height: 54px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-content h1 br,
  .hero-content p br {
    display: none;
  }

  /* Kurslar */
  .courses-container {
    padding: 0 16px;
  }

  .courses-section {
    margin-top: 50px;
    gap: 16px;
  }

  /* Təklif */
  .teklif-content h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .teklif-content p {
    font-size: 15px;
  }

  .teklif-content p br {
    display: none;
  }

  .teklif-divider {
    margin: 60px 0;
  }

  /* 4 sütundan 2 sütuna keç */
  .teklif-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teklif-card h3 {
    font-size: 46px;
    margin: 30px 0;
  }

  .teklif-card-spacer {
    padding: 30px;
  }

  /* Rəylər */
  .tərəfdaşlarımızın-rəyi-content {
    gap: 24px;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    width: 100%;
    max-width: 600px;
  }

  /* Form */
  .form-wrapper {
    padding: 40px 30px;
  }

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

/* ── 768px ── */
@media (max-width: 768px) {

  /* Hero */
  .hero-content {
    padding: 60px 16px 40px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 24px;
  }

  /* Kurslar */
  .courses-section {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .section-3-card-item {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 320px;
  }

  .section-3-card-item img {
    margin-top: auto;
  }

  /* Təklif */
  .teklif-content {
    margin-top: 70px;
  }

  .teklif-content h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .teklif-content p {
    font-size: 14px;
  }

  .teklif-divider {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Teklif grid: mobildə də alt alta deyil, 2 sütunlu qalır */

  .teklif-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .teklif-card h3 {
    font-size: 38px;
    margin: 0;
  }

  .teklif-card {
    padding: 16px 0;
    min-height: 180px;
  }

  .teklif-card-spacer {
    padding: 24px;
    min-height: 180px;
  }

  .teklif-card-spacer h3 {
    font-size: 18px;
  }

  .teklif-card-spacer p {
    font-size: 14px;
  }

  /* Rəylər */
  .tərəfdaşlarımızın-rəyi {
    margin-top: 60px;
  }

  .tərəfdaşlarımızın-rəyi-bg {
    padding: 60px 0;
    margin-top: 60px;
  }

  .tərəfdaşlarımızın-rəyi h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    padding: 24px 20px;
    max-width: calc(100% - 32px);
  }

  .quote-text {
    font-size: 13px;
    line-height: 20px;
  }

  .quote-text br {
    display: none;
  }

  .person-name {
    font-size: 16px;
  }

  .rəylər-footer-logo {
    margin-left: 10px;
    width: 80px;
  }

  /* Form */
  .form-wrapper {
    margin: 60px auto;
    padding: 30px 20px;
    max-width: calc(100% - 32px);
  }

  .form-title {
    font-size: 26px;
    line-height: 36px;
  }

  .form-title br {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-submit {
    padding: 10px 50px;
  }

  .absolute.left-0.w-full label,
  .absolute.left-0.w-full label span {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #selected-text {
    max-width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {

  /* Hero */
  .hero-content {
    padding: 50px 12px 30px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 22px;
  }

  /* Kurslar */
  .courses-container {
    padding: 0 12px;
  }

  .section-3-card-item {
    max-width: 80%;
    min-height: 300px;
    padding: 20px;
  }

  .section-3-card-item h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .section-3-card-item a {
    font-size: 14px;
  }

  /* Təklif */
  .teklif-content {
    margin-top: 50px;
    padding: 0 12px;
  }

  .section-teklif .mx-10 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .teklif-content h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .teklif-content p {
    font-size: 13px;
  }

  .teklif-card h3 {
    font-size: 30px;
    margin: 8px 0;
  }

  .teklif-card {
    padding: 8px 0;
  }

  .teklif-card-spacer {
    padding: 18px;
    border-width: 2px;
  }

  .teklif-card-spacer h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .teklif-card-spacer p {
    font-size: 13px;
    line-height: 22px;
  }

  /* Rəylər */
  .tərəfdaşlarımızın-rəyi h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    min-width: unset;
    width: 100%;
    padding: 20px 16px;
    max-width: calc(100% - 24px);
  }

  .quote-text {
    font-size: 12px;
  }

  .person-name {
    font-size: 14px;
  }

  .person-role {
    font-size: 12px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  .rəylər-footer-logo {
    width: 64px;
    height: auto;
    margin-left: 8px;
  }

  /* Form */
  .form-wrapper {
    margin: 40px auto;
    padding: 24px 14px;
    max-width: calc(100% - 24px);
  }

  .form-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .form-grid {
    gap: 16px;
  }

  .form-field label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-field input {
    padding: 12px 14px;
    font-size: 13px;
  }

  label[for="dropdown-toggle"],
  label[for="dropdown-toggle-entity"] {
    height: 48px;
    font-size: 13px;
  }

  .btn-submit {
    padding: 10px 36px;
    font-size: 14px;
    width: 100%;
  }
}

/* Mobile-only testimonial overrides (do not modify desktop rules or HTML) */
@media (max-width: 1024px) {
  .tərəfdaşlarımızın-rəyi-bg {
    display: block !important;
    padding-top: 140px !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
    background-position: top center !important;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    width: 100% !important;
    max-width: 720px !important;
    margin-left: 0 !important;
    margin: 0 auto 24px !important;
  }
}

@media (max-width: 768px) {
  .tərəfdaşlarımızın-rəyi-bg {
    padding: 60px 0 !important;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    padding: 24px 20px !important;
    margin-left: 0 !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .tərəfdaşlarımızın-rəyi-bg {
    padding: 40px 0 !important;
  }

  .tərəfdaşlarımızın-rəyi-card-1,
  .tərəfdaşlarımızın-rəyi-card-2 {
    min-width: unset !important;
    width: 100% !important;
    padding: 16px 12px !important;
    margin-left: 0 !important;
    margin-bottom: 16px !important;
  }
}

/* Korporativ page — mobile menu light-mode adjustments (only affects light mode) */
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu {
  background: #11011f !important;
  color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: none !important;
}

html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-nav,
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-group,
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-submenu,
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-link,
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-toggle,
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-arrow,
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu-close {
  color: rgba(255, 255, 255, 0.95) !important;
}

html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
}

html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-menu-link:hover {
  color: rgba(142, 255, 1, 1) !important;
}

html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .mobile-submenu {
  border-left-color: rgba(142, 255, 1, 0.25) !important;
}

html:not([data-theme="dark"]) body.korporativ-page .mobile-menu-close {
  color: rgba(255, 255, 255, 0.95) !important;
}

html:not([data-theme="dark"]) body.korporativ-page .mobile-menu-overlay {
  background: rgba(0, 0, 0, 0.45) !important;
}

/* Ensure login button in mobile menu is visible */
html:not([data-theme="dark"]) body.korporativ-page .mobile-menu .login-btn {
  background: rgba(142, 255, 1, 0.12) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(142, 255, 1, 0.35) !important;
}