/* ========================================
   PLACE PLATE — FAQ 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(1rem, 1.8vw, 1.15rem); }
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;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #00adb5; margin-bottom: 12px;
}

/* 3. LAYOUT
   ======================================== */

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

/* 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 50px #00f7ff4f;
}

.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-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-primary-large:hover  { background-color: #f5f5f5; transform: translateY(-2px); box-shadow: 0 0 50px #00f7ff4f; }
.btn-secondary-large:hover { background: linear-gradient(265deg, #00adb5 0%, #008a90 100%); transform: translateY(-2px); box-shadow: 0 0 50px #00ccd788; }

/* 5. NAVIGATION
   ======================================== */

.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;
}

/* ========================================
   TEMPLATE NAV DROPDOWN
   Hover menu under "Templates" link
   ======================================== */

.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
   Compact pill search bar with popup
   ======================================== */

.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; }
}

/* Search icon button — kept for backward compat on other pages */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-search-btn:hover {
  background: rgba(0, 173, 181, 0.1);
  transform: scale(1.05);
}

.nav-search-btn.active circle,
.nav-search-btn.active path {
  stroke: #00adb5;
}

/* ========================================
   SEARCH OVERLAY
   Slides down from header
   ======================================== */

.nav-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #ffffff;
  padding: 78px 50px 24px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  box-shadow: 0 8px 40px rgba(0, 62, 65, 0.1);
  border-bottom: 1px solid rgba(0, 62, 65, 0.07);
}

.nav-search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-search-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
  background: #f9f9f9;
  border: 1.5px solid rgba(0, 62, 65, 0.12);
  border-radius: 50px;
  padding: 8px 8px 8px 22px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.nav-search-inner:focus-within {
  border-color: #00adb5;
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.12);
}

.nav-search-icon { flex-shrink: 0; opacity: 0.4; }

.nav-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: #003e41;
  min-width: 0;
}

.nav-search-input::placeholder { color: rgba(0, 62, 65, 0.35); }

.nav-search-submit {
  padding: 9px 22px;
  background: linear-gradient(265deg, #03d7e1 0%, #00adb5 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-search-submit:hover {
  background: linear-gradient(265deg, #00adb5 0%, #008a90 100%);
  box-shadow: 0 4px 16px rgba(0, 174, 181, 0.4);
}

.nav-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-search-close:hover { background: rgba(0, 62, 65, 0.07); }

/* Popular search hints */
.nav-search-hints {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 860px;
  margin: 12px auto 0;
  flex-wrap: wrap;
}

.hint-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 62, 65, 0.4);
  white-space: nowrap;
}

.hint-tag {
  padding: 4px 14px;
  background: transparent;
  border: 1px solid rgba(0, 62, 65, 0.15);
  border-radius: 50px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 62, 65, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
}

.hint-tag:hover {
  background: rgba(0, 173, 181, 0.08);
  border-color: #00adb5;
  color: #00adb5;
}

@media (max-width: 768px) {
  .nav-search-overlay { padding: 70px 20px 20px; }
  .nav-search-inner   { padding: 6px 6px 6px 16px; }
  .nav-search-input   { font-size: 14px; }
}

/* Mobile search inside navbar-responsive */
.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); }

/* Navigation Menu */
@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. PAGE HERO
   ======================================== */

.page-hero {
  width: 100%;
  padding: 140px 50px 80px;
  background: #f0f9fa;
}

.page-hero-inner {
  width: 90%; max-width: 1300px; margin: 0 auto;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(0,62,65,0.5); margin-bottom: 32px;
}
.breadcrumb a        { color: rgba(0,62,65,0.5); transition: color 0.2s; }
.breadcrumb a:hover  { color: #00adb5; }
.breadcrumb-sep      { opacity: 0.4; }

.page-hero-text { max-width: 700px; margin-bottom: 56px; }

.page-hero-title {
  font-weight: 600; line-height: 1.1; margin-bottom: 20px;
}

.page-hero-desc {
  color: #003e41; font-size: clamp(0.95rem, 1.5vw, 1.1rem); max-width: 560px;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 24px 40px;
  max-width: 640px;
  backdrop-filter: blur(4px);
}

.hero-stat {
  display: flex; flex-direction: column; gap: 4px; flex: 1; text-align: center;
}

.hero-stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #003e41;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px; color: rgba(0,62,65,0.55); font-weight: 500;
}

.hero-stat-divider {
  width: 1px; height: 48px;
  background: rgba(0,62,65,0.12);
  flex-shrink: 0; margin: 0 32px;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 60px; }
  .hero-stats { padding: 20px 24px; flex-wrap: wrap; gap: 20px; }
  .hero-stat-divider { display: none; }
}

/* 7. FAQ SECTION
   ======================================== */

.section-faq {
  background: #f9f9f9;
  padding: 80px 0 100px;
}

.faq-container {
  width: 90%; max-width: 900px; margin: 0 auto;
}

/* Category Tabs */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 56px;
}

.faq-tab {
  padding: 10px 24px;
  background: #ffffff;
  border: 1.5px solid rgba(0,62,65,0.12);
  border-radius: 50px;
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: rgba(0,62,65,0.6);
  cursor: pointer; transition: all 0.25s ease;
}

.faq-tab:hover {
  border-color: #00adb5;
  color: #00adb5;
  background: rgba(0,173,181,0.05);
}

.faq-tab.active {
  background: linear-gradient(265deg, #03d7e1 0%, #00adb5 100%);
  border-color: transparent;
  color: #ffffff;
  font-weight: 600;
}

/* FAQ Group */
.faq-group { display: flex; flex-direction: column; gap: 12px; }
.faq-group.hidden { display: none; }

.faq-group-header {
  display: flex; align-items: center; justify-content: flex-end;
  margin-bottom: 4px;
}

.faq-group-count {
  font-size: 12px; color: rgba(0,62,65,0.35); font-weight: 500;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid rgba(0,62,65,0.06);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
  border-color: rgba(0,173,181,0.2);
}

.faq-item.open {
  border-color: rgba(0,173,181,0.3);
  box-shadow: 0 4px 24px rgba(0,173,181,0.08);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: transparent; border: none; cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(0,173,181,0.03); }

.faq-item.open .faq-question { background: rgba(0,173,181,0.04); }

.faq-question-text {
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: 600;
  color: #003e41;
  line-height: 1.4;
  flex: 1;
}

/* Plus/X icon */
.faq-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(0,173,181,0.08);
  border-radius: 50%;
  color: #00adb5;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              background 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #03d7e1, #00adb5);
  color: #ffffff;
}

/* FAQ Answer — smooth max-height animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(0,62,65,0.06);
  padding-top: 18px;
}

.faq-answer-inner p {
  color: rgba(0,62,65,0.7);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-question      { padding: 18px 20px; }
  .faq-answer-inner  { padding: 16px 20px 20px; }
  .faq-question-text { font-size: 0.95rem; }
}

/* 8. CONTACT CTA SECTION
   ======================================== */

.section-contact-cta {
  background: #ffffff;
  padding: 100px 0;
}

.contact-cta-inner {
  width: 90%; max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: center;
}

@media (max-width: 900px) {
  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-cta-title { margin-bottom: 16px; }

.contact-cta-desc {
  color: rgba(0,62,65,0.6);
  max-width: 380px;
}

/* Contact Cards */
.contact-cards {
  display: flex; flex-direction: column; gap: 16px;
}

.contact-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: #f9f9f9;
  border: 1.5px solid rgba(0,62,65,0.08);
  border-radius: 16px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.contact-card:hover {
  background: #ffffff;
  border-color: rgba(0,173,181,0.25);
  box-shadow: 0 8px 32px rgba(0,173,181,0.1);
  transform: translateX(4px);
}

.contact-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  flex-shrink: 0;
}

.contact-icon-whatsapp { background: rgba(37,211,102,0.1); color: #25d366; }
.contact-icon-email    { background: rgba(0,173,181,0.1);  color: #00adb5; }
.contact-icon-call     { background: rgba(0,62,65,0.07);   color: #003e41; }

.contact-card-body { flex: 1; }

.contact-card-title {
  font-size: 15px; font-weight: 600; color: #003e41; margin-bottom: 4px;
}

.contact-card-desc {
  font-size: 13px; color: rgba(0,62,65,0.55);
}

.contact-card-arrow {
  color: rgba(0,62,65,0.25);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.contact-card:hover .contact-card-arrow {
  color: #00adb5;
  transform: translateX(4px);
}

/* Trust Badge: Stars + text */
.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;
}

@media (max-width: 500px) {
  .trust-badge {
  display: inline-flex;
  align-items: start;
  flex-direction: column;
  gap: 8px;
  padding: 0px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0px;
}
}

.trust-badge-white {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.trust-badge-white12 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-badge-white12 .trust-text {
  color: #ffffff;
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 15px;
  height: 15px;
}

.star-small {
  width: 25px;
  height: 25px;
}

.trust-text {
  font-size: 14px;
  font-weight: 500;
  color: #003e41;
}


/* ========================================
   15. FOOTER CTA SECTION
   Final conversion area
   ======================================== */

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 717px;
  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%);
}

@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: 480px) {
  .footer-cta {
    min-height: 400px;
    padding: 60px 20px;
  }
}

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

.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-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  filter: blur(10px);
  animation: none;
}

.footer-cta-headline.animated .word {
  animation: wordReveal 0.8s ease-out forwards;
}
@media (max-width:768px){
  .footer-cta-headline .word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
  animation: none;
}

.footer-cta-headline.animated .word {
  animation: none;
}
}

.footer-cta-subheadline {
  color: #003e41;
}

.footer-cta-buttons {
  display: flex;
  gap: 32px;
}

/* 10. 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;
}

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

.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);
  flex-wrap: wrap; gap: 24px;
}

.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.315); padding-right: 20px; }
.policy li:last-child { border-right: none; }

.social-links p { color: rgba(255,255,255,0.575); font-size: 12px; }

/* 11. MOBILE NAV
   ======================================== */

.navbar-responsive {
  position: fixed; top: -100%; left: 0; width: 100%;
  background: #f9f9f9;
  display: flex; flex-direction: column; 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 cubic-bezier(0.4,0,0.2,1);
  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; }

/* 12. RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .section-faq       { padding: 60px 0 80px; }
  .section-contact-cta { padding: 70px 0; }
  .footer            { padding: 60px 0; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }
  .brand-name        { font-size: 32px; }
  .brand-tagline     { font-size: 18px; }
}

@media (max-width: 480px) {
  .footer-cta-content { align-items: flex-start; text-align: left; }
  .footer-cta-headline { text-align: left; }
  .footer-cta-sub      { text-align: left; }
  .contact-card        { flex-wrap: wrap; }
}


/* ── 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); }