/* ===========================================================
   CREATIVE SPOT — FULL CSS (fixed hero + stable language toggle)
   =========================================================== */

/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root{
  --bg:#F8FAFC;
  --bg-soft:#F1F5F9;

  --bg-softer:#4155eb6b;
  --bg-softer2:#08ae429a;
  --bg-softer3:#9dd3ffb0;
  --bg-softer4:#b9c0f9a0;

  --text-main:#0F172A;
  --text-sub:#475569;

  --primary:#1F3A5F;
  --secondary:#4A6FA5;
  --accent:#D9E2EC;

  --border-soft:#00ddffc1;
  --shadow-soft:0 14px 40px rgba(2, 6, 23, 0.10);

  --radius-lg:24px;
  --radius-md:16px;

  --brand-grad: linear-gradient(90deg, var(--secondary), var(--primary));
  --focus-ring: rgba(74, 111, 165, 0.22);
  --footer-bg: #FFFFFF;
}

/* ================= GLOBAL ================= */

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "PingFang HK", "PingFang TC", "Noto Sans TC",
               "Microsoft JhengHei", Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; height: auto; display: block; }

/* ===========================================================
   LANGUAGE TOGGLE (NO JUMP)
   Use:
   <span class="lang-swap">
     <span class="lang-en">...</span>
     <span class="lang-zh">...</span>
   </span>

   or:
   <div class="lang-swap">
     <div class="lang-en">...</div>
     <div class="lang-zh">...</div>
   </div>
   =========================================================== */

/* 1-cell grid overlay => container height = max(en, zh) */
.lang-swap{
  display: grid;
  grid-template-columns: 1fr;
}

.lang-swap > .lang-en,
.lang-swap > .lang-zh{
  grid-area: 1 / 1;
  transition: opacity 0.2s ease;
}

/* default EN */
html:not([data-lang="zh"]) .lang-swap > .lang-en{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html:not([data-lang="zh"]) .lang-swap > .lang-zh{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ZH */
html[data-lang="zh"] .lang-swap > .lang-zh{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html[data-lang="zh"] .lang-swap > .lang-en{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ================= NAVBAR ================= */

.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
}

.nav-left{
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-logo{
  width: 120px;
  height: 55px;
  display: flex;
  align-items: center;
}

.nav-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-brand{
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
}

.nav-right{
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-link{
  font-size: 15px;
  color: var(--text-sub);
  padding: 8px 0;
  position: relative;
  display: inline-block;
}

.nav-link:hover{ color: var(--primary); }

.nav-link::after{
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-grad);
  transition: all 0.3s ease;
}

.nav-link.active{
  color: var(--primary);
  font-weight: 700;
}

.nav-link.active::after{
  left: 0;
  right: 0;
}

/* language toggle button */
.nav-right .lang-toggle{
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 8px 0;
  color: var(--text-sub);
  position: relative;
}

.nav-right .lang-toggle:hover{ color: var(--primary); }

.nav-right .lang-toggle::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  border-radius:999px;
  background: var(--brand-grad);
  transition: all 0.3s ease;
}

/* underline only when focused/hovered (no language-dependent underline) */
.nav-right .lang-toggle:hover::after,
.nav-right .lang-toggle:focus-visible::after{
  left:0; right:0;
}

/* ===========================================================
   HERO SECTION — HERO 1 fullscreen → HERO 1 reveal
   =========================================================== */

.hero-animated{
  position: relative;
  height: 100vh;
  margin-top: 60px;
  overflow: hidden;
  transition: height 0.7s ease;
}

/* HERO BG */
.hero-bg-layer{
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 1s ease;
}

.hero-shrink .hero-bg-img{ opacity: 0; }

/* HERO 1 IMAGE */
.hero-animated-img-container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 1.2s ease;
}

.hero-shrink .hero-animated-img-container{
  opacity: 1;
  left: 72px;
  transform: translate(0, -50%);
  pointer-events: auto;
}

.hero-animated-img{
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.hero-animated-img2{
  width: clamp(240px, 38vw, 540px);
  height: auto;

  max-width: 95%;
  max-height: 560px;

  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* HERO TEXT */
.hero-animated-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 820px;
  transition: all 0.7s ease;
  font-family: 'Pacifico', cursive;
  color: #9888be;
  font-size: 20px;
}

/* stable title area */
.hero-animated-text .title-slot{
  min-height: 3.8em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-animated-text h1{
  margin: 0 0 12px;
  line-height: 1.15;
  color: #115e36d1;
  font-size: 120px;
}

/* Shrunk state */
.hero-shrink .hero-animated-text{
  left: 65%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "PingFang HK", "PingFang TC", "Noto Sans TC",
               "Microsoft JhengHei", Arial, sans-serif;
  font-size: 15px;
}

.hero-shrink .hero-animated-text h1{
  color: var(--primary);
  letter-spacing: -0.02em;
  font-size: 80px;
  margin: 0 0 12px;
}

.hero-sub{ color: var(--text-sub); }

/* HERO ACTIONS */
.hero-actions{
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hidden until scroll */
.appear-on-scroll{
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.hero-shrink .appear-on-scroll{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Buttons */
.hero-actions a,
.btn-primary,
.btn-secondary{
  padding: 14px 40px;
  font-size: 17px;
  min-width: 240px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-block;
}

.btn-primary{
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.18);
}

.btn-primary:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-secondary{
  background: rgba(255,255,255,0.92);
  border-color: var(--border-soft);
  color: var(--primary);
}

.btn-secondary:hover{ background: #fff; }

/* When HERO shrinks */
.hero-shrink{
  margin-top: 350px;
  transform: translateY(40px);
  transition: all 2s ease;
}

/* ================= VIDEO WRAP ================= */
.video-wrap{
  max-width: 750px;
  margin: 30px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-wrap video{
  width: 100%;
  height: 100%;       
  display: block;
  background: #000;
  object-fit: cover; 
}


/* ================= MAIN CONTENT ================= */

.section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section-soft{ background: var(--bg-softer); }
.section-soft2{ background: var(--bg-softer2); }
.section-soft3{ background: var(--bg-softer3); }
.section-soft4{ background: var(--bg-softer4); }

.section h1{
  font-size: 80px;
  text-align: center;
  color: #e1c436;
  margin: 0 0 16px;
}

.section h2{
  font-size: 50px;
  text-align: center;
  color: var(--primary);
  margin: 0 0 18px;
}

.section h3{
  font-size: 25px;
  text-align: center;
  color: var(--primary);
  margin: 0 0 12px;
}

/* Two-column bilingual block */
.bi{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bi-label{
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
}

/* Cards grid */
.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card{
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  border-left: 6px solid var(--secondary);
}

.card:nth-child(1){ border-left-color: #514d8e; }
.card:nth-child(2){ border-left-color: #42bdc3; }
.card:nth-child(3){ border-left-color: #3D6FA6; }
.card:nth-child(4){ border-left-color: #1F3A5F; }

.card h3{ color: var(--primary); margin-top: 0; }
.card p{ color: var(--text-sub); }

/* FOOTER */
footer{
  padding: 30px;
  background: var(--footer-bg);
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-sub);
}

/* ================= Table ================= */

.table-wrap{
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

table{
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

th, td{
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}

th{
  background: var(--bg-soft);
  color: var(--primary);
  font-weight: 700;
}

/* ===========================================================
   FORM WRAP (Contact Page / Demo Request)
   =========================================================== */

.form-wrap{
  max-width: 780px;
  margin: 60px auto;
  padding: 40px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-title{
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.form-desc{
  font-size: 16px;
  text-align: center;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row-full{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label{
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

input, textarea, select{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  transition: 0.2s ease;
}

input:focus, textarea:focus, select:focus{
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px var(--focus-ring);
  outline: none;
}

textarea{
  min-height: 120px;
  resize: vertical;
}

.checkbox-row{
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-sub);
  align-items: flex-start;
}

.form-footer{
  text-align: right;
}

/* legacy (ok to keep) */
.form-button-wrap{ text-align: right; }
.form-button-wrap .btn-primary{ min-width: 200px; }

/* ================= Contact info grid ================= */

.contact-info-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-item{
  background: #fff;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.contact-item h3{
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 18px;
}

.contact-item p{
  margin: 0;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ================= Statistics Image ================= */

.stat{
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.stat img{
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.stat-caption{
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ================= FAQ ================= */

.faq-section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-section h2{
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f2937;
}

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

.faq-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.faq-card h3{
  font-size: 16px;
  margin-bottom: 12px;
  color: #111827;
}

.faq-card p{
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
}

.faq-card strong{ color: #111827; }

/* ================= Info ================= */

.info-section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.info-section h2{
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f2937;
}

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

.info-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.info-card h3{
  font-size: 16px;
  margin-bottom: 12px;
  color: #111827;
}

.info-card p{
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 10px;
}

/* ================ BILINGUAL PARALLEL LAYOUT ================ */

.bi-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.bi-column{ width: 100%; }

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

/* ===== Thank-you modal ===== */

.modal-overlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
}

.modal-overlay.show{ display: flex; }

.modal-card{
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.modal-card h2{ margin: 0 0 10px; }
.modal-card p{ margin: 0 0 16px; }

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 700px){
  .form-row{ grid-template-columns: 1fr; }
  .form-button-wrap, .form-footer{ text-align: center; }

  .hero-shrink .hero-animated-text{
    left: 50%;
    text-align: center;
  }

  .hero-actions{ justify-content: center; }

  .hero-actions a, .btn-primary, .btn-secondary{
    min-width: 220px;
  }

  .hero-shrink .hero-animated-img-container{
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-animated-text h1{ font-size: 64px; }
  .hero-shrink .hero-animated-text h1{ font-size: 48px; }
}

/* ================= SOCIAL MEDIA ================= */

.social-block{
  margin-top: 60px;
  text-align: center;
}

.social-links{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;

  background: #fff;
  color: var(--primary);

  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);

  transition: all 0.25s ease;
}

.social-btn svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hover */
.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Brand colors (subtle) */
.social-btn.fb:hover{ color:#1877F2; }
.social-btn.ig:hover{ color:#E1306C; }
.social-btn.yt:hover{ color:#FF0000; }
.social-btn.wa:hover{ color:#25D366; }

/* Mobile */
@media (max-width:700px){
  .social-links{
    gap: 12px;
  }
}

/* ===========================================================
   HERO POSITION FIX (minimal override, keep your design)
   Add this at the END so it overrides the hero rules above
   =========================================================== */

/* Fix mobile address-bar jump + keep hero height stable */
.hero-animated{
  height: calc(100dvh - 60px);
  min-height: calc(100vh - 60px); /* fallback */
}

/* Keep hero text width stable across devices */
.hero-animated-text{
  width: min(820px, calc(100% - 48px));
}

/* Shrunk text: avoid hard-coded 65% drifting on different screens */
.hero-shrink .hero-animated-text{
  left: clamp(52%, 65%, 68%);
  width: min(720px, calc(100% - 160px));
}

/* Shrunk image: avoid fixed 72px being too much/too little on devices */
.hero-shrink .hero-animated-img-container{
  left: clamp(18px, 5vw, 72px);
}

/* Remove the big margin jump that breaks layout on some devices */
.hero-shrink{
  margin-top: 350px;
  transform: translateY(40px);
}

/* Mid screens: keep things centered if space is tight */
@media (max-width: 900px){
  .hero-shrink .hero-animated-text{
    left: 50%;
    width: min(820px, calc(100% - 48px));
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .hero-shrink .hero-animated-img-container{
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ================= STEP IMAGES — Standard size & ratio ================= */

.step-grid{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* figure reset */
.step-item{
  margin: 0;
}

/* fixed ratio container (pick ONE ratio) */
.img-ratio{
  width: 100%;
  aspect-ratio: 4 / 3;          /* ✅ change to 1/1 or 16/9 if you want */
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

/* image fits inside the box */
.img-ratio img{
  width: 100%;
  height: 100%;
  object-fit: contain;          /* ✅ keep whole product visible */
  display: block;
}

/* captions */
.step-item figcaption{
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  line-height: 1.4;
}

/* mobile tighten */
@media (max-width:700px){
  .step-grid{ gap: 14px; }
  .img-ratio{ aspect-ratio: 1 / 1; }  /* optional: nicer on mobile */
}

/* ===========================================================
   MOBILE PATCH 
   =========================================================== */

   @media (max-width: 900px){
    /* ---------- Navbar: avoid overflow ---------- */
    .navbar{
      padding: 0 14px;
      height: 60px;
    }
  
    .nav-logo{
      width: 96px;
      height: 44px;
    }
  
    /* let nav items wrap instead of running off-screen */
    .nav-right{
      gap: 14px;
      flex-wrap: wrap;
      justify-content: flex-end;
      max-width: calc(100vw - 130px);
    }
  
    .nav-link,
    .nav-right .lang-toggle{
      font-size: 14px;
      padding: 6px 0;
      white-space: nowrap;
    }
  
    /* ---------- HERO: keep readable + centered ---------- */
    .hero-animated{
      margin-top: 60px;
      height: calc(100dvh - 60px);
      min-height: calc(100vh - 60px);
    }
  
    .hero-animated-text{
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      font-size: 16px;
      width: min(92vw, 820px);
      padding: 0 10px;
    }
  
    .hero-animated-text h1{
      font-size: 56px;
      margin-bottom: 10px;
    }
  
    /* When shrunk, keep it centered on small screens */
    .hero-shrink .hero-animated-text{
      left: 50%;
      text-align: center;
      transform: translate(-50%, -50%);
      width: min(92vw, 820px);
    }
  
    .hero-shrink .hero-animated-text h1{
      font-size: 44px;
    }
  
    /* Shrunk product image stays centered */
    .hero-animated-img2{
      width: min(72vw, 360px);
      max-height: 360px;
    }
  
    .hero-shrink .hero-animated-img-container{
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    /* ---------- BI: always 1 column on phone ---------- */
    .bi{
      grid-template-columns: 1fr !important;
      gap: 20px;
    }
  
    /* ---------- Sections spacing ---------- */
    .section{
      padding: 54px 16px;
    }
  
    .section h2{
      font-size: 34px;
    }
  
    .section h3{
      font-size: 18px;
    }
  
    /* ---------- Cards / grids ---------- */
    .grid{
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .card{
      padding: 18px;
    }
  
    /* ---------- Video blocks ---------- */
    .video-wrap{
      max-width: 100%;
      margin: 18px auto 0;
    }
  
    /* ---------- Tables: make sure it scrolls nicely ---------- */
    .table-wrap{
      border-radius: 14px;
    }
  
    table{
      min-width: 720px; /* force horizontal scroll instead of squishing text */
    }
  
    /* ---------- Forms ---------- */
    .form-wrap{
      margin: 32px auto;
      padding: 22px 16px;
      max-width: 94vw;
    }
  
    .form-row{
      grid-template-columns: 1fr;
      gap: 12px;
    }
  
    input, textarea, select{
      font-size: 16px; /* prevents iOS zoom on focus */
    }
  
    /* ---------- Contact info blocks ---------- */
    .contact-info-grid{
      grid-template-columns: 1fr;
      max-width: 94vw;
    }
  
    /* ---------- FAQ ---------- */
    .faq-section,
    .info-section{
      padding: 46px 16px;
    }
  
    .faq-grid,
    .info-grid{
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
  
  @media (max-width: 420px){
    /* extra small phones */
    .nav-right{
      gap: 10px;
    }
    .hero-animated-text h1{
      font-size: 48px;
    }
    .hero-shrink .hero-animated-text h1{
      font-size: 40px;
    }
  }
  