/* ========================================
   PLACE PLATE — ABOUT PAGE STYLESHEET
   Design System: PlacePlate (Light)
   ======================================== */

/* 1. RESET & BASE */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Onest", Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  color: #003e41;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 2. TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { font-size: clamp(0.875rem, 1.5vw, 1rem); line-height: 1.6; }

.text-primary { color: #003e41; }
.text-accent  { color: #00ced7; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00adb5;
  margin-bottom: 12px;
  background-color: rgba(0, 173, 181, 0.1);
padding: 6px 14px;
border-radius: 50px;
border: 1px solid rgba(0, 173, 181, 0.44);
max-width: 130px;
text-align: center;
}

/* 3. LAYOUT */

.page-container { width: 100%; min-height: 100vh; background-color: #f9f9f9; }

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
}

/* 4. BUTTONS */

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px; min-height: 44px;
  background-color: #ffffff; color: #00adb5;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary-menu {
  display: none; align-items: center; justify-content: center;
  padding: 14px 20px; min-height: 44px;
  background-color: #ffffff; color: #00adb5;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 800px) {
  .btn-primary      { display: none; }
  .btn-primary-menu { display: inline-flex; }
}

.btn-primary:hover,
.btn-primary-menu:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 247, 255, 0.25);
}

.btn-primary-large {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 24px; min-height: 44px; width: 250px;
  background-color: #ffffff; color: #00adb5;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 247, 255, 0.25);
}

.btn-secondary-large {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 24px; min-height: 44px; width: 250px;
  background: linear-gradient(265deg, #03d7e1 0%, #00adb5 100%);
  color: #ffffff; font-size: 14px; font-weight: 600; border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-large:hover {
  background: linear-gradient(265deg, #00adb5 0%, #008a90 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 204, 215, 0.45);
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 24px; min-height: 44px; width: 250px;
  background: transparent;
  border: 2px solid rgba(0, 62, 65, 0.2);
  color: #003e41; font-size: 14px; font-weight: 600; border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(0, 62, 65, 0.05);
  border-color: #003e41;
  transform: translateY(-2px);
}

/* 5. HEADER / NAV */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.365);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 25px;
  height: 25px;
  transform: rotate(-45deg);
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
}

.logo-primary {
  color: #003e41;
}

.logo-accent {
  color: #00adb5;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media(max-width:800px){
  .nav-menu {
    display: none;
}
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #003e41;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00adb5;
}

/* 6. ABOUT HERO */

.about-hero {
  padding: 130px 50px 80px;
  background: #f0f9fa;
}

.about-hero-inner { max-width: 1300px; margin: 0 auto; }

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 32px;
}

.about-hero-text { display: flex; flex-direction: column; gap: 24px; }

.about-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 20px;
  background-color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50px;
  align-self: flex-start;
}
@media(max-width:400px){
  .about-badge {
  display: inline-flex; align-items: flex-start; gap: 8px;
  padding: 0px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 50px;
  align-self: flex-start;
  flex-direction: column;
}
}

.stars { display: flex; gap: 3px; }
.star  { width: 15px; height: 15px; }
.trust-text { font-size: 13px; font-weight: 500; color: #003e41; }

.about-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
}

.about-hero-desc { color: #003e41; font-size: 16px; max-width: 480px; }

.about-hero-cta { display: flex; gap: 20px; flex-wrap: wrap; }

.about-hero-visual { display: flex; align-items: center; justify-content: center; }

.visual-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 62, 65, 0.1);
}

.visual-quote {
  font-size: 80px; line-height: 0.7; font-weight: 700;
  color: #00adb5; opacity: 0.3;
}

.visual-tagline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: #003e41; line-height: 1.2;
}

.visual-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #03d7e1, #00adb5);
  border-radius: 2px;
}

.visual-brand { font-size: 20px; font-weight: 700; color: #003e41; }
.visual-sub   { font-size: 13px; font-weight: 500; color: #00adb5; }

@media (max-width: 1024px) {
  .about-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-visual  { justify-content: flex-start; }
  .visual-card        { max-width: 100%; }
}

@media (max-width: 768px) { .about-hero { padding: 120px 30px 60px; } }

@media (max-width: 480px) {
  .about-hero { padding: 110px 20px 50px; }
  .about-hero-cta { flex-direction: column; }
  .btn-secondary-large, .btn-outline { width: 100%; }
}

/* 7. OUR STORY */

.section-story { background: #ffffff; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text { display: flex; flex-direction: column; gap: 12px; }

.story-body {
  font-size: 16px;
  color: rgba(0, 62, 65, 0.8);
  line-height: 1.8;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 52px;
}

.story-stat-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.story-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 62, 65, 0.08);
}

.story-stat-accent {
  background: linear-gradient(135deg, #00ced8 0%, #00a8ae 100%);
}

.story-stat-number {
  font-size: 48px; font-weight: 700; color: #003e41; line-height: 1;
}

.story-stat-accent .story-stat-number {
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.story-stat-label { font-size: 14px; font-weight: 500; color: rgba(0,62,65,0.55); }
.story-stat-accent .story-stat-label { color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-stats { padding-top: 0; }
}

@media (max-width: 480px) {
  .story-stats { grid-template-columns: 1fr; }
  .story-stat-number { font-size: 40px; }
}

/* 8. WHAT WE DO */

.section-services { background: #f9f9f9; }

.section-header-center {
  text-align: center;
  margin: 0 auto 60px;
  display: flex; flex-direction: column; align-items: left;
}

.section-title-center { font-weight: 600; color: #003e41; margin-bottom: 12px;width: 100%;text-align: left; }
.section-desc-center  { color: rgba(0,62,65,0.7);text-align: left; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: #ffffff; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,62,65,0.1);
}

.service-card-dark {
  background: linear-gradient(to right bottom, rgb(0, 100, 105), rgb(0, 40, 42));
}

.service-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; }

.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img { transform: scale(1.04); }

.service-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; flex: 1; }

.service-tag {
  display: inline-flex; padding: 4px 16px;
  background: rgba(0,173,181,0.1); border: 1px solid rgba(0,173,181,0.3);
  border-radius: 50px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; color: #00adb5;
  align-self: flex-start;
}

.service-tag-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}

.service-title { font-size: 22px; font-weight: 700; color: #003e41; }
.service-title-white { color: #ffffff; }
.service-text { font-size: 15px; color: rgba(0,62,65,0.7); line-height: 1.7; }
.service-text-white { color: rgba(255,255,255,0.75); }

.service-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.service-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(0,62,65,0.7);
}

.service-features li img { width: 18px; height: 18px; flex-shrink: 0; }
.service-features-white li { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* 9. VALUES */

.section-values { background: #ffffff; }

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

.value-card {
  display: flex; flex-direction: column; gap: 20px;
  padding: 36px;
  background: rgba(217,217,217,0.16);
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,62,65,0.07);
}

.value-card-accent { background: linear-gradient(252deg, #00ced8 0%, #00a8ae 100%); }
.value-icon { width: 72px; height: 72px; }
.value-title { font-size: 18px; font-weight: 700; color: #003e41; }
.value-title-white { color: #ffffff; }
.value-text { font-size: 14px; color: rgba(0,62,65,0.65); line-height: 1.7; }
.value-text-white { color: rgba(255,255,255,0.85); }

/* 10. WHO WE SERVE */

.section-audience { background: #f9f9f9; }

.audience-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.audience-text { display: flex; flex-direction: column; gap: 20px; }
.section-title { font-weight: 600; color: #003e41; }
.audience-desc { font-size: 16px; color: rgba(0,62,65,0.7); line-height: 1.8; }
.audience-countries { display: flex; flex-direction: column; gap: 10px; }

.countries-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(0,62,65,0.4);
}

.countries-list { display: flex; flex-wrap: wrap; gap: 8px; }

.country-tag {
  padding: 6px 14px; background: #ffffff;
  border: 1px solid rgba(0,62,65,0.12);
  border-radius: 50px; font-size: 13px; font-weight: 500; color: #003e41;
}

.audience-cards { display: flex; flex-direction: column; gap: 16px; }

.audience-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px; background: #ffffff; border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0,62,65,0.08);
}

.audience-icon { width: 44px; height: 44px; flex-shrink: 0; opacity: 0.7; }
.audience-card-title { font-size: 15px; font-weight: 700; color: #003e41; margin-bottom: 4px; }
.audience-card-text  { font-size: 13px; color: rgba(0,62,65,0.55); }

@media (max-width: 1024px) { .audience-grid { grid-template-columns: 1fr; gap: 48px; } }

/* 11. TESTIMONIALS STRIP */

.section-testimonials-strip { background: #ffffff; }

.testimonials-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.strip-card {
  background: #f9f9f9; border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.strip-card.visible { opacity: 1; transform: translateY(0); }
.strip-stars { display: flex; gap: 3px; }
.strip-text { font-size: 15px; font-style: italic; color: rgba(0,62,65,0.75); line-height: 1.7; flex: 1; }
.strip-author { font-size: 13px; font-weight: 500; color: rgba(0,62,65,0.5); }
.strip-author strong { color: #003e41; }

/* 12. FOOTER CTA */

.footer-cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 600px; padding: 100px 50px;
  background: radial-gradient(100% 100% at 50% 0%,
    rgba(59,255,238,0) 12%, rgba(48,240,227,0) 26%,
    rgba(36,223,216,0.17) 54%, rgba(4,220,230,1) 100%);
}

.footer-cta-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; max-width: 700px; text-align: center;
}

.trust-badge {
  display: inline-flex; align-items: center; gap: 15px;
  padding: 8px 20px;
  background-color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50px;
}

.trust-badge-white {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.footer-cta-text { display: flex; flex-direction: column; gap: 16px; }

.footer-cta-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.1;
}

.footer-cta-subheadline { color: #003e41; }
.footer-cta-buttons { display: flex; gap: 32px; }

@media (max-width: 768px) {
  .footer-cta { min-height: 500px; padding: 80px 30px; }
  .footer-cta-buttons { flex-direction: column; width: 100%; }
  .btn-primary-large, .btn-secondary-large { width: 100%; }
}

@media (max-width: 500px) {
  .footer-cta-content { align-items: flex-start; text-align: left; }
}

/* 13. FOOTER */

.footer { background-color: #393e46; padding: 100px 0; }

.footer-content {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; gap: 64px;
}

.footer-top { display: grid; grid-template-columns: 1.5fr 3fr; gap: 64px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.brand-name   { font-size: 40px; font-weight: 600; line-height: normal; }
.brand-primary { color: #ffffff; }
.brand-accent  { color: #00adb5; }
.brand-tagline { font-size: 24px; font-weight: 500; color: #ffffff; }

.footer-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col-title { font-size: 16px; font-weight: 600; color: #ffffff; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright { display: flex; flex-direction: column; gap: 15px; font-size: 14px; color: #ffffff; }
.policy { display: flex; gap: 30px; font-size: 12px; }
.policy li { border-right: 1px solid rgba(255,255,255,0.3); padding-right: 20px; }
.social-links p { color: rgba(255,255,255,0.5); font-size: 12px; }

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .footer { padding: 80px 0; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .brand-name { font-size: 36px; }
}

/* 14. MOBILE NAV */

.navbar-responsive {
  position: fixed; top: -100%; left: 0; width: 100%;
  background: #f9f9f9; display: flex; flex-direction: column;
  justify-content: flex-start; align-items: center;
  padding-bottom: 30px; border-radius: 0 0 10px 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.17);
  z-index: 999;
  transition: top 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
  opacity: 0;
}

.navbar-responsive.active { top: 0; opacity: 1; }

.navbar-responsive ul {
  padding-top: 80px; width: 90%;
  display: flex; flex-direction: column;
}

.navbar-responsive ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar-responsive ul button {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; min-height: 44px;
  background-color: #ffffff; color: #00adb5;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  margin-top: 20px; transition: all 0.3s ease;
}

.nav-link-responsive { font-size: 14px; font-weight: 500; color: #003e41; }


/* ── Nav-right ──────────────────────────────────── */
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ── Templates dropdown ──────────────────────────── */
.nav-item-tpl { position: relative; }
.nav-link-tpl { display: inline-flex; align-items: center; gap: 5px; }
.tpl-arrow {
  opacity: 0.55;
  transition: transform 0.22s ease, opacity 0.2s;
  flex-shrink: 0;
  filter: invert(13%) sepia(63%) saturate(617%) hue-rotate(145deg) brightness(85%) contrast(103%);
}
.nav-item-tpl:hover .tpl-arrow { transform: rotate(180deg); opacity: 1; }
.tpl-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 10px; background: transparent;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}
.tpl-dropdown-inner {
  background: #ffffff;
  border: 1px solid rgba(0,62,65,0.08);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,62,65,0.12), 0 2px 8px rgba(0,62,65,0.06);
  min-width: 210px; padding: 8px; position: relative;
}
.tpl-dropdown-inner::before {
  content: ""; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #ffffff;
  border-left: 1px solid rgba(0,62,65,0.08);
  border-top: 1px solid rgba(0,62,65,0.08);
}
.nav-item-tpl:hover .tpl-dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.tpl-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; color: #003e41;
  transition: background 0.18s, color 0.18s;
}
.tpl-dd-item:hover { background: rgba(0,173,181,0.08); color: #00adb5; }
.tpl-dd-item svg { flex-shrink: 0; opacity: 0.5; transition: opacity 0.18s; }
.tpl-dd-item:hover svg { opacity: 1; }

/* ── Inline navbar search ───────────────────────── */
.nav-search-wrap { position: relative; display: flex; align-items: center; }
.nav-search-icon-inline {
  position: absolute; left: 12px; pointer-events: none;
  color: rgba(0,62,65,0.4); flex-shrink: 0;
}
.nav-search-input-inline {
  width: 200px; padding: 8px 14px 8px 36px;
  background: rgba(0,62,65,0.05);
  border: 1.5px solid rgba(0,62,65,0.12);
  border-radius: 50px; font-family: inherit;
  font-size: 13.5px; font-weight: 400; color: #003e41;
  outline: none;
  transition: width 0.25s ease, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.nav-search-input-inline::placeholder { color: rgba(0,62,65,0.35); }
.nav-search-input-inline:focus {
  width: 240px; border-color: #00adb5; background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,173,181,0.1);
}
.nav-search-popup {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 280px; background: #ffffff;
  border: 1px solid rgba(0,62,65,0.09);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,62,65,0.12), 0 2px 8px rgba(0,62,65,0.06);
  padding: 14px 14px 12px; z-index: 1000;
}
.nav-search-popup[hidden] { display: none; }
.popup-hints-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(0,62,65,0.4); margin-bottom: 10px;
}
.popup-hints-list { display: flex; flex-wrap: wrap; gap: 6px; }
.popup-hint {
  padding: 5px 14px; background: transparent;
  border: 1px solid rgba(0,62,65,0.13); border-radius: 50px;
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: rgba(0,62,65,0.65); cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.popup-hint:hover { background: rgba(0,173,181,0.08); border-color: #00adb5; color: #00adb5; }
@media (max-width: 900px) { .nav-search-wrap { display: none; } }

/* ── Mobile search row ──────────────────────────── */
.mobile-search-row { border-bottom: 1px solid rgba(0,0,0,0.04) !important; }
.mobile-search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: #f0f0f0; border-radius: 10px; padding: 10px 14px;
}
.mobile-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: inherit; font-size: 14px; font-weight: 400; color: #003e41;
}
.mobile-search-input::placeholder { color: rgba(0,62,65,0.4); }