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

:root {
  --purple: #7b3f9e;
  --purple-light: #9b5bbe;
  --purple-pale: rgba(123, 63, 158, 0.15);
  --purple-glow: rgba(123, 63, 158, 0.25);
  --purple-border: rgba(155, 91, 190, 0.3);
  --purple-deep: #5a2d78;

  --star: #f5c842;
  --star-glow: rgba(245, 200, 66, 0.6);

  --white: #ffffff;
  --off-white: #f5f0fa;
  --dark: #0c0810;
  --dark-2: #110d17;
  --dark-card: #13101a;
  --dark-card-2: #1a1525;
  --text: #f0ecf8;
  --text-muted: #a090b8;
  --border: rgba(255, 255, 255, 0.1);
  --border-purple: rgba(155, 91, 190, 0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 12px 50px rgba(0, 0, 0, 0.55);
  --shadow-purple: 0 8px 32px rgba(123, 63, 158, 0.35);
  --font: "Tajawal", "Cairo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  direction: rtl;
}

/* ===== BACKGROUND ===== */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 50% at 15% 5%,
      rgba(123, 63, 158, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 85% 95%,
      rgba(123, 63, 158, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 30% at 50% 50%,
      rgba(90, 45, 120, 0.06) 0%,
      transparent 60%
    );
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.floating-orb {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(123, 63, 158, 0.12),
    transparent 70%
  );
  animation-duration: 25s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -80px;
  background: radial-gradient(circle, rgba(155, 91, 190, 0.1), transparent 70%);
  animation-duration: 18s;
  animation-delay: -8s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  background: radial-gradient(
    circle,
    rgba(123, 63, 158, 0.08),
    transparent 70%
  );
  animation-duration: 22s;
  animation-delay: -14s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ===== HEADER ===== */
.header {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 14, 1) 0%,
    rgba(13, 9, 20, 1) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  padding: 40px 40px 36px;
}

/* ===== LOGOS — always side by side with center content ===== */
.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.logos-ends {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.logo-wrap:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.logo-wrap:hover::after {
  opacity: 1;
}

.logo-wrap img {
  width: 70px;
  height: 52px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

/* Divider between the two logos on mobile */
.logos-divider {
  display: none;
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.collab-center {
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 0 12px;
}

.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

.collab-title {
  font-size: clamp(16px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.collab-title .x {
  color: var(--purple-light);
  margin: 0 6px;
  text-shadow: 0 0 20px rgba(155, 91, 190, 0.5);
}

.collab-meta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.meta-pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.meta-pill svg {
  width: 12px;
  height: 12px;
  stroke: var(--purple-light);
  flex-shrink: 0;
}

.header-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 30%,
    var(--purple-light) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%
  );
  opacity: 0.5;
}

/* ===== MAIN ===== */
.main-content {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ===== CARDS ===== */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 48px 48px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.card:nth-child(2) {
  animation-delay: 0.12s;
}
.card:nth-child(3) {
  animation-delay: 0.24s;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(155, 91, 190, 0.5),
    rgba(255, 255, 255, 0.25),
    transparent
  );
  opacity: 0.8;
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 63, 158, 0.1), transparent 70%);
  pointer-events: none;
}

.glow-2 {
  top: auto;
  bottom: -80px;
  right: auto;
  left: -80px;
  width: 300px;
  height: 300px;
}

.glow-3 {
  top: -40px;
  right: 40%;
  width: 180px;
  height: 180px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15));
  max-width: 60px;
}

.card h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* ===== VIDEO SECTION ===== */
.drive-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-deep) 100%
  );
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.drive-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.drive-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(123, 63, 158, 0.5);
}

.drive-btn:hover::before {
  opacity: 1;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.btn-text {
  flex: 1;
}

.btn-arrow {
  display: flex;
  align-items: center;
  opacity: 0.6;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
}

/* ===== FEEDBACK FORM ===== */
.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.field-label svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.5);
}

.form-group {
  margin-bottom: 28px;
}

.textarea-wrap {
  position: relative;
}

.textarea-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple-light),
    transparent
  );
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.textarea-wrap:focus-within::after {
  opacity: 1;
}

textarea {
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  padding: 16px 18px;
  resize: vertical;
  outline: none;
  direction: rtl;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Ratings */
.ratings-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.ratings-header svg {
  width: 14px;
  height: 14px;
  stroke: var(--star);
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.rating-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 14px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.rating-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.rating-item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.rating-icon {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
}

.rating-item label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rating-hint {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.rating-item:hover .rating-hint {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== STARS ===== */
.stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.star {
  font-size: 24px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.15);
  transition:
    color 0.18s,
    transform 0.18s,
    filter 0.18s;
  line-height: 1;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.star:hover {
  transform: scale(1.25) rotate(-5deg);
}

.star.selected {
  color: var(--star);
  filter: drop-shadow(0 0 7px var(--star-glow));
}

/* Submit */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-deep) 60%,
    #3d1a5a 100%
  );
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  flex-shrink: 0;
}

.submit-icon svg {
  width: 17px;
  height: 17px;
}

.submit-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(123, 63, 158, 0.5);
}

.submit-btn:hover .submit-shine {
  transform: translateX(100%);
}

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

#successMessage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

#successMessage.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.success-icon {
  font-size: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: rgba(255, 255, 255, 0.03);
}

.about-section p {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.about-section strong {
  color: var(--white);
  font-weight: 800;
}

.countries {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.country-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.country-flag {
  font-size: 20px;
}

.about-stats {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  transition: background 0.3s;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 20px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: white;
  box-shadow: 0 2px 10px rgba(123, 63, 158, 0.3);
  flex-shrink: 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* ===================================================
   RESPONSIVE — Tablet (≤768px)
   =================================================== */
@media (max-width: 768px) {
  .header-inner {
    padding: 28px 20px 24px;
  }

  /* Logos stay side by side but center content wraps below */
  .logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .logos-ends {
    order: 1;
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .logos-divider {
    display: block;
  }

  .collab-center {
    order: 2;
    width: 100%;
    padding: 0;
  }

  .logo-wrap img {
    width: 64px;
    height: 46px;
  }

  .logo-wrap {
    padding: 10px 14px;
  }

  .collab-badge {
    font-size: 9px;
    letter-spacing: 1.8px;
    padding: 5px 12px;
  }

  .collab-meta {
    gap: 6px;
  }

  .meta-pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  .card {
    padding: 28px 24px;
  }

  .main-content {
    padding: 36px 16px 40px;
    gap: 20px;
  }

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

  .drive-btn {
    font-size: 15px;
    padding: 15px 18px;
  }
}

/* ===================================================
   RESPONSIVE — Mobile (≤480px)
   =================================================== */
@media (max-width: 480px) {
  .header-inner {
    padding: 20px 16px 20px;
  }

  /* Both logos in a row, centered */
  .logos {
    gap: 12px;
  }

  .logos-ends {
    gap: 12px;
  }

  .logo-wrap {
    padding: 8px 12px;
  }

  .logo-wrap img {
    width: 56px;
    height: 40px;
  }

  .collab-title {
    font-size: clamp(14px, 5vw, 22px);
    margin-bottom: 10px;
  }

  .collab-badge {
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .meta-pill {
    font-size: 10px;
    padding: 4px 9px;
    gap: 5px;
  }

  .meta-pill svg {
    width: 10px;
    height: 10px;
  }

  .card {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .card h2 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .section-desc {
    font-size: 14px;
  }

  .main-content {
    padding: 24px 12px 32px;
    gap: 16px;
  }

  /* Ratings: 2 cols on small phones */
  .ratings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rating-item {
    padding: 16px 10px 14px;
  }

  .rating-icon {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .rating-item label {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .star {
    font-size: 20px;
  }

  .stars {
    gap: 2px;
  }

  .drive-btn {
    font-size: 14px;
    padding: 14px 16px;
    gap: 10px;
  }

  .btn-icon {
    width: 30px;
    height: 30px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 15px 20px;
    gap: 10px;
  }

  .submit-icon {
    width: 30px;
    height: 30px;
  }

  /* Stats: row stays on small screens but shrink text */
  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .stat {
    padding: 16px 8px;
  }

  .about-section p {
    font-size: 14px;
    line-height: 1.9;
  }

  .countries {
    gap: 8px;
  }

  .country-card {
    padding: 8px 12px;
    font-size: 13px;
  }

  .country-flag {
    font-size: 18px;
  }

  .footer {
    padding: 24px 16px;
  }

  .footer p {
    font-size: 12px;
  }
}

/* ===================================================
   RESPONSIVE — Very small (≤360px)
   =================================================== */
@media (max-width: 360px) {
  .logo-wrap img {
    width: 48px;
    height: 34px;
  }

  .logo-wrap {
    padding: 7px 10px;
  }

  .logos-ends {
    gap: 8px;
  }

  .collab-title {
    font-size: 13px;
  }

  .ratings-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .star {
    font-size: 18px;
  }

  .card {
    padding: 18px 14px;
  }

  .about-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }
}
