

/* ---------  --------- */
:root {
  --primary-gradient: linear-gradient(135deg, #5b9df9 0%, #9b5df7 100%);
  --glow-start: rgba(255, 184, 108, 0.22);
  --glow-end: rgba(255, 184, 108, 0.0);
  --text-dark: #0a0a0a;
  --text-light: #60636b;
  --card-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.55);
  --shadow-soft: 0 10px 40px rgba(20, 20, 40, 0.06);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --easing: cubic-bezier(.2,.8,.2,1);
}

/* ---------  --------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========  ========= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px; /* ✅  */
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: background 0.35s ease;
}

.nav-container {
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { -webkit-text-fill-color: initial; color: inherit; }

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-left: 1.4rem;
  position: relative;
  transition: transform 0.25s var(--easing), color 0.25s var(--easing);
}

nav a:hover {
  transform: translateY(-1px);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0%;
  background: var(--primary-gradient);
  transition: width 0.25s var(--easing);
}

nav a:hover::after {
  width: 100%;
}


/* ========= Hero ========= */
.hero {
  position: relative;
  height: 100vh;            /*  */
  display: flex;           /*  flex  */
  flex-direction: column;
  justify-content: center; /*  */
  align-items: center;
  text-align: center;
  padding-top: 3rem;          /*  */
  overflow: hidden;
  transform: translateY(-3vh); /*  */
  background: linear-gradient(
    180deg,
    rgba(246, 245, 255, 1) 0%,
    rgba(225, 225, 255, 0.85) 30%,
    rgba(205, 210, 255, 0.6) 70%,
    rgba(220, 230, 255, 0) 100% 
  );
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(4px, 7vw, 6rem);
  font-weight: 900;
  margin-bottom: 1rem;
   white-space: nowrap;  /*  */
  line-height: 1.1;
  transition: color 0.4s ease, background 0.4s ease;
}
.hero p {
  font-size: 1.6rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 2rem;
}
.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary-gradient);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(90,100,255,0.25);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.btn:hover { transform: translateY(-3px) scale(1.03); }


/* =========  section  ========= */
section {
  padding: 6rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
section.visible { opacity: 1; transform: translateY(0); }

/* ========= Painpoints ========= */
.painpoints {
  position: relative;
  text-align: center;
  padding: 5rem 0 7rem;
  overflow: hidden;
  background: #fff;
}
.painpoints h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}
.painpoints h2.is-visible { opacity: 1; transform: translateY(0); }
.painpoints .subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 6rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.1s var(--easing), transform 1.1s var(--easing);
}
.painpoints .subtitle.is-visible { opacity: 1; transform: translateY(0); }
.pain-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}
.pain-card {
  width: 340px;
  height: 250px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.06),
    inset 0 1px 4px rgba(255,255,255,0.8);
  padding: 2.4rem 2rem;
  text-align: left;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .9s var(--easing), transform .9s var(--easing);
}
.pain-card.is-visible { opacity: 1; transform: scale(1); }
.pain-card:nth-child(1) { transition-delay: 0.25s; }
.pain-card:nth-child(2) { transition-delay: 0.45s; }
.pain-card:nth-child(3) { transition-delay: 0.65s; }
.pain-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(20,20,60,0.12);
}

/* ---------- 🧊 Use Cases Section (Refined clean edge version) ---------- */

.usecases {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: rem 0;
  background: radial-gradient(circle at 15% 90%, rgba(120,130,255,0.15), transparent 70%),
              radial-gradient(circle at 85% 90%, rgba(255,190,100,0.18), transparent 70%),
              linear-gradient(180deg, #ffffff 0%, #fff9f4 100%);
}

/*  */
.usecases-container {
  position: relative;
  width: 100%;
  height: 360px;              /* */
}

/* ——  —— */
.usecases-container::before,
.usecases-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: none;
  z-index: 3;
  filter: blur(20px); /*  */
  opacity: 0.9;
}

.usecases-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.usecases-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.usecases-container > h2 {
  position: absolute;       
  top: 0.31rem;             
  left: 3rem;               
  font-size: 2.8rem;       
  font-weight: 1200;        
  color: #2e2b34;           
  z-index: 5;               
  pointer-events: none;      
}

/* 🌟 track（main） */
.usecases-track {
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  width: max-content;
  height: 230px; 
  animation: scrollTrack 26s linear infinite;
  will-change: transform;
}

/* 🌟 The second track  */
.usecases-container .usecases-track + .usecases-track {
  position: absolute;
  top: 60%;
  left: 100%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  width: max-content;
  height: 230px;
  animation: scrollTrack 26s linear infinite;
  margin-left: 2rem;
}

/* 🌟 GPU  */
@keyframes scrollTrack {
  0% { transform: translate3d(0, -50%, 0); }
  100% { transform: translate3d(-100%, -50%, 0); }
}

/*  */
.usecase-card {
  flex: 0 0 360px;                 /*  */
  aspect-ratio: 3 / 2;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(35px);
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.08);
  padding: 1.8rem;
  transition: transform .4s ease, box-shadow .4s ease;
}
.usecase-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 40px rgba(100,120,255,0.15);
}
/*  */
.usecase-card img {
  width: 100%;
  height: 60%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
}
/*  */
.usecase-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.usecase-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.55;
}

/*  */
.usecase-card:focus {
  outline: none;
  box-shadow: none;
}

/*  */
.usecases-container::before,
.usecases-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  pointer-events: none;
  z-index: 3;
}
.usecases-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.usecases-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/*  */
@media (max-width: 992px) {
  .usecases-container {
    padding: 3rem 1rem;
  }
  .usecase-card {
    flex: 0 0 280px;
  }
}

/* ========= user Cases ========= */
.insight-grid, .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.insight-card, .case-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
.insight-card.visible, .case-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= CTA ========= */
.cta {
  position: relative;
  max-width: 1000px;
  margin: 6rem auto 6rem; 
  text-align: center;
  padding: 4rem 2rem; 
  background: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 40px rgba(150, 130, 255, 0.15); 
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(160,140,255,0.6), rgba(100,200,255,0.6)); 
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0.8;
}

/*  */
.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem; /*  */
  letter-spacing: 0.5px;
}

/*  */
.cta a {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #5a7bff, #a077ff); /* ✅  */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(140,120,255,0.2);
  border: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  cursor: pointer;
}

/* hover  */
.cta a:hover {
  filter: brightness(1.08); /* ✅  */
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(140,120,255,0.3);
}


/* ========= Footer ========= */
footer {
  text-align: center;
  color: var(--text-light);
  padding: 2.2rem 0 3.2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* =========  ========= */
@media (max-width: 992px) {
  .pain-grid, .insight-grid, .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .pain-grid, .insight-grid, .case-grid {
    grid-template-columns: 1fr;
  }
  .cta { margin: 3rem 1rem 4rem; }
}

/* ========= Why Choose GOLA ========= */
.why {
  padding: 7rem 0;
  background: #fff;
}

.why h2 {
  text-align: center;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 1px; /* ✅  */
  margin-bottom: 5rem;
  background: linear-gradient(135deg,#12817f 30%, #297caf 50%, #6c4295 70%); /* ✅ 品牌感渐变 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 16px rgba(80, 178, 254, 0.25); /* ✅  */
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}


/*  */
.reason {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 6rem;
  padding: 0 3rem;
}

/*  */
.reason.reverse {
  flex-direction: row-reverse;
}

/*  */
.reason img {
  width: 44%;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.reason img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/*  */
.reason .text {
  width: 44%;
}
.reason .text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #023569;
}
.reason .text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

/*  */
@media (max-width: 900px) {
  .reason, .reason.reverse {
    flex-direction: column;
  }
  .reason img, .reason .text {
    width: 90%;
  }
}

/* ========= Trusted Partners========= */
.partners {
  padding: 8rem 0;
  background: #0f0f0f;           
  text-align: center;
  overflow: hidden;
}

/*  */
.partners h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;                 
  margin-bottom: 5rem;
  letter-spacing: 1px;
  text-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
  animation: fadeDown 1.2s ease forwards;
}

/*  */
.partner-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ========= Trusted Partner cards） ========= */
.partner-card {
  flex: 1 1 420px;
  max-width: 520px;
  min-height: 500px;
  background: linear-gradient(145deg, rgba(220, 230, 255, 1) 0%, rgba(240, 225, 255, 1) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: #111; /* ✅  */
  border: 1px solid rgba(160, 140, 255, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(140, 120, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
}

/* ✅  */
.partner-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(
    circle at center,
    rgba(180, 170, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
  opacity: 0.8;
  pointer-events: none;
}

.partner-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* ✅  */
.partner-card * {
  position: relative;
  z-index: 2;
}

/* Logo */
.partner-card img {
  height: 90px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 5px rgba(150, 130, 255, 0.3));
}

/*  */
.partner-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111;
}
.partner-card p {
  font-size: 1.05rem;
  color: #333; /* ✅ 深灰文字 */
  line-height: 1.7;
}

/* Hover  */
.partner-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 40px rgba(150, 130, 255, 0.25);
}


/*  */
@media (max-width: 900px) {
  .partner-row {
    flex-direction: column;
    align-items: center;
  }
  .partner-card {
    width: 90%;
  }
  .partners h2 {
    font-size: 2.4rem;
  }
}

/* =====  ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/*  */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
}
.fade-in.visible {
  animation: fadeUp 1.2s ease forwards;
}

/* ===== We Understand Your Concerns Section (Gradient Background) ===== */
#painpoints {
  position: relative;
  background: #fff; /*  */
  overflow: hidden;
  padding: 8rem 0;
  z-index: 1;
}

#painpoints::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 1200px;
  height: 400px;
  background: radial-gradient(
    circle at center,
    rgba(255, 200, 120, 0.65) 0%,   /*  */
    rgba(255, 220, 170, 0.15) 40%,  /*  */
    rgba(255, 240, 210, 0.05) 70%,  /*  */
    transparent 100%
  );
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite alternate; /*  */
}

/* ✨  */
@keyframes pulseGlow {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.05); }
}

/*  */
#painpoints * {
  position: relative;
  z-index: 1;
}

/*  Why Choose GOLA 动画 */
#why {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

#why.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🌟 CTA Section () */
.cta-section {
  position: relative;
  margin: 8rem auto 4rem; /* ✅  */
  padding: 5rem 2rem;
  max-width: 1000px;
  text-align: center;
  border-radius: 24px;
  border: 2px solid transparent;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(150,130,255,0.6), rgba(120,200,255,0.6)) border-box; /* ✅ 渐变边框 */
  box-shadow: 0 25px 60px rgba(160, 150, 255, 0.15);
}

/* ✨  */
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #101010;
}

/* 🌈  */
.cta-section .cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  background: rgba(160,140,255,0.25); /*  */
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(150,130,255,0.25);
  border: 1px solid rgba(180,160,255,0.4);
  transition: all 0.4s ease;
}

/* ✨  */
.cta-section .cta-button:hover {
  background: linear-gradient(135deg, rgba(150,130,255,0.6), rgba(100,200,255,0.6));
  box-shadow: 0 15px 40px rgba(140,120,255,0.3);
  transform: translateY(-2px);
}

/* =========================
   🧩 Services Page Layout
   ========================= */

   .service-block {
  padding: 6rem 0;
}

.service-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

.service-layout.reverse {
  flex-direction: row-reverse;
}

.service-info {
  flex: 1;
  max-width: 35%;
}

.service-info h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-info p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-details {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(120,120,255,0.15);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(100,120,255,0.25);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-details.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

/* =====  service  ===== */
.service-card {
  padding: 2rem 1.8rem; /*  1.5rem */
  font-size: 1.05rem;   /*  */
}

.service-layout.reverse .service-details.two-cols {
  max-width: 85%;
  margin-left: auto;
}

/* =========================
   🤝 Partner Detail Layout
   ========================= */
.partner-intro {
  padding: 8rem 0 5rem;
  text-align: center;
}
.partner-intro h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.partner-intro p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.8;
}

.partner-block {
  padding: 7rem 0;
  background: #fafaff;
}
.partner-block.dark {
  background: #0f0f16;
  color: #f2f2f8;
}
.partner-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.partner-layout.reverse {
  flex-direction: row-reverse;
}
.partner-image img {
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 20px rgba(100, 120, 255, 0.25));
}
.partner-image img:hover {
  transform: scale(1.05); /*  */
}
.partner-info {
  flex: 1;
  min-width: 320px;
}
.partner-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partner-block.dark .partner-info h2 {
  background: linear-gradient(135deg, #ffffff, #ccccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partner-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
}
.partner-block.dark .partner-info p {
  color: #d9d9e0;
}
.partner-info .btn {
  margin-top: 2.5rem;
  display: inline-block;
}

/* =========================
   🏢 About Page Layout
   ========================= */

.about-intro {
  padding: 8rem 0 6rem;
  text-align: center;
}
.about-intro h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.about-intro p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.8;
}

/* mission */
.mission-section {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 6rem 0;
}
.mission-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.mission-info {
  flex: 1;
  min-width: 320px;
}
.mission-info h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.mission-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.mission-info p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}
.mission-graphic img {
  width: 400px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(150,130,255,0.15);
}

/* team */
.team-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 100%);
  text-align: center;
}
.team-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.team-section .subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 4rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.team-member {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(120,120,255,0.15);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(100,120,255,0.25);
}
.team-member h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.team-member p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* corporate values */
.values-section {
  padding: 8rem 0;
  background: #0f0f16;
  color: #fff;
}
.values-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #ccccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.values-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  /*color: #d9d9e0; */
}
.values-list li {
  margin-bottom: 1rem;
}

/* =========================
   👥 Professional Team Layout
   ========================= */
.team-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 100%);
  text-align: center;
}

.team-section h2 {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.team-section .subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.team-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/*  */
.team-row.two .team-card {
  flex: 1 1 420px;
  max-width: 440px;
}
.team-row.three .team-card {
  flex: 1 1 300px;
  max-width: 320px;
}

.team-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(140,130,255,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(100,120,255,0.25);
}

.team-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid rgba(150,140,255,0.25);
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.2rem 1.5rem 0.3rem;
}

.team-card .role {
  font-size: 1rem;
  /*color: #8c8c93; */
  font-weight: 600;
  margin: 0 1.5rem 0.8rem;
}

.team-card .bio {
  font-size: 0.96rem;
 /* color: var(--text-light); */
  line-height: 1.7;
  margin: 0 1.5rem 1.5rem;
}

/*  */
@media (max-width: 900px) {
  .team-row.two, .team-row.three {
    flex-direction: column;
    align-items: center;
  }
  .team-card img {
    height: 380px;
  }
}

/* =========================
   📂 Case Studies Layout
   ========================= */
.case-intro {
  padding: 8rem 0 5rem;
  text-align: center;
}
.case-intro h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.case-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Grid Layout */
.case-gallery {
  padding: 4rem 0 8rem;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  justify-items: center;
}

.case-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(120,120,255,0.15);
  transition: all 0.35s ease;
  max-width: 420px;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(100,120,255,0.25);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid rgba(150, 130, 255, 0.2);
}

.case-info {
  padding: 1.8rem;
  text-align: left;
}

.case-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #1a1a33;
}

.case-info p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid #5b9df9;
  color: #5b9df9;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  color: #fff;
  border-color: transparent;
}

/* Responsive */
@media (max-width: 900px) {
  .case-info {
    text-align: center;
  }
}

/* =========================
   📰 Blog Page Styles
   ========================= */

/* Intro Section */
.blog-intro {
  padding: 8rem 0 5rem;
  text-align: center;
}
.blog-intro h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.blog-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Featured Article */
.blog-featured {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 6rem 0;
}
.feature-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.feature-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(100,120,255,0.2);
}
.feature-info {
  flex: 1;
  min-width: 320px;
}
.feature-info .tag {
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 1rem 0;
  color: #1a1a33;
}
.feature-info p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Blog Grid */
.blog-grid-section {
  padding: 6rem 0 8rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}
.blog-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(120,120,255,0.15);
  overflow: hidden;
  transition: all 0.35s ease;
  max-width: 380px;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(100,120,255,0.25);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-content {
  padding: 1.5rem;
  text-align: left;
}
.blog-content .tag {
  background: rgba(150,140,255,0.15);
  color: #5b5bf9;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: #1a1a33;
}
.blog-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.read-more {
  font-weight: 600;
  color: #5b9df9;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more:hover {
  color: #9b5df7;
}

/* =========================
   ✉️ Contact Page Layout
   ========================= */
.contact-intro {
  padding: 8rem 0 4rem;
  text-align: center;
}
.contact-intro h1 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.contact-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-layout {
  padding: 6rem 0;
}
.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/*  */
.contact-form {
  flex: 1 1 500px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(120,120,255,0.15);
}
.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(180,180,255,0.3);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.6);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #5b9df9;
  box-shadow: 0 0 0 3px rgba(90,150,255,0.15);
}
.contact-form textarea {
  height: 150px;
  resize: none;
}

/*  */
.contact-info {
  flex: 1 1 300px;
}
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  color: var(--text-light);
}
.contact-info li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-info a {
  color: #5b9df9;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/*  */
.social-links a img {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.social-links a img:hover {
  transform: scale(1.1);
}

/*  */
.map-section iframe {
  border: none;
  width: 100%;
  display: block;
  filter: grayscale(10%) brightness(98%);
}

/*  */
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
  }
  .contact-form, .contact-info {
    max-width: 100%;
  }
}


#typewriter {
  display: inline-block;
  border-right: 2px solid #007bff;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  50% { border-color: transparent; }
}

/* ===============================
   ✨ Partner Page Clean Override
   =============================== */

/*  */
.partner-layout {
  align-items: flex-start !important;
  gap: 3.5rem !important;
}

/* ✅ Logo  */
.partner-image img {
  max-width: 420px !important; /* 360px */
  height: auto !important;
  border-radius: 14px;
  filter: drop-shadow(0 4px 24px rgba(100, 120, 255, 0.25));
  transition: transform 0.3s ease;
}
.partner-image img:hover {
  transform: scale(1.06);
}

/* ===== Partner page hard override (clean & symmetric) ===== */

/*  */
.partner-intro { padding: 8rem 0 6.5rem !important; }
.partner-block,
.partner-block.dark { padding: 5.5rem 0 !important; }

/*  +  Logo  */
.partner-block .partner-layout { align-items: flex-start !important; gap: 3rem !important; }
.partner-block .partner-image { 
  flex: 0 0 clamp(320px, 28vw, 420px) !important;  /*  */
}
.partner-block .partner-image img {
  width: 85% !important;      /*  width / max-width  */
  height: auto !important;
  max-width: none !important;  /*  360px  CSS ） */
  display: block;
  border-radius: 14px;
  filter: drop-shadow(0 4px 24px rgba(100,120,255,.25));
  transition: transform .3s ease;
}
.partner-block .partner-image img:hover { transform: scale(1.05); }

.partner-block .partner-info { flex: 1 1 auto !important; min-width: 320px; }

/*  */
.partner-block .partner-info .btn{
  display: inline-block !important;
  margin-top: 1.1rem !important;
  padding: 0.35rem 0.9rem !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg,#5b9df9,#9b5df7);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(90,100,255,.22);
}

.partner-block:not(.dark) .partner-layout {
  gap: 5rem !important;   /* 3.5rem, logo*/
}

/* =====================================================
   🌌 Real Circular Aura Glow for Service Sections
   ===================================================== */

/* 🟦 Smart & Secure Cyber Defense */
#cyber-defense {
  position: relative;
  overflow: hidden;
  background: none;
  z-index: 1;
}

/*  -  section  */
#cyber-defense::after {
  content: "";
  position: absolute;
  top: 40%;          /*  */
  left: 30%;
  width: 600px;      /*  */
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(130, 160, 255, 0.45) 0%,   /*  */
    rgba(150, 130, 255, 0.18) 40%,  /*  */
    rgba(255, 255, 255, 0) 80%      /*  */
  );
  transform: translate(-50%, -50%);
  filter: blur(160px);               /*  */
  z-index: -1;
}


/* 🟧 App Development */
#app-development {
  position: relative;
  overflow: hidden;
  background: none;
  z-index: 1;
}

/* 二个 -  */
#app-development::after {
  content: "";
  position: absolute;
  bottom: 40%;
  right: 15%;
  width: 400px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 190, 120, 0.4) 0%,     /*  */
    rgba(255, 150, 100, 0.18) 45%,   /*  */
    rgba(255, 255, 255, 0) 70%       /*  */
  );
  transform: translate(50%, 50%);
  filter: blur(160px);
  z-index: -1;
}
/*  +  */
.services-section,
#cyber-defense,
#app-development {
  background: transparent !important;  /*  */
  overflow: visible !important;        /*  */
  position: relative;                  /*  */
  z-index: 1;
}

/*  .container  .services-layout */
.services-section .container,
.services-layout {
  background: none !important;
  box-shadow: none !important;
}

/* 🌟 OUR MISSION -  */

.mission-section {
  position: relative;
  background: #ffffff;
  text-align: center;
  padding: 9rem 0 6rem;
  overflow: visible;
  border: none;
  z-index: 2;
  box-shadow: none;
}

.mission-section::before{
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,93,247,0.18) 0%, transparent 70%);
  filter: blur(120px);
  bottom: -180px;   /* ↓  */
  left: 25%;        /* ←  */
  transform: translateX(-50%);
  z-index: 0;
}

.mission-section::before {
  bottom: -100px;  /*  */
  left: -200px;
}
.mission-section::after {
  top: -150px;     /*  */
  right: -150px;
}

.mission-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.mission-section p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.15rem;
  color: #333;
  position: relative;
  z-index: 2;
}

/* 💫 OUR VALUES -  Mission */
.values-section {
  position: relative;
  background: #ffffff;
  color: #111; 
  padding: 8rem 0;
  overflow: visible;
  margin-top: -6rem; /*  */
  border: none;
  z-index: 1;
  box-shadow: none;
}

.values-section::after {
  content: "";
  position: absolute;
  width: 550px;         /* 🔹  */
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,93,247,0.15) 0%, transparent 70%);
  filter: blur(100px);
  bottom: -150px;        /* 🔽  */
  right: -100px;
  z-index: 0;
}
.values-section::before {
  top: -300px;    /* 入 Mission 区 */
  left: -200px;
}
.values-section::after {
  bottom: -200px;
  right: -150px;
}

.values-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* 个 Value  */
.values-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.value-card {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(120,120,255,0.1);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(100,120,255,0.25);
}
.value-card h3 {
  color: #4b4bb0;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.value-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 🌌 MEET OUR TEAM -  +  */
.team-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1e1e35 100%);
  text-align: center;
  color: #ffffff;
  z-index: 5;
  overflow: visible;
}

/*  */
.team-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  position: relative;
  z-index: 10;
  text-shadow: 0 0 15px rgba(170,170,255,0.6),
               0 0 40px rgba(130,130,255,0.4);
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.team-section .subtitle {
  color: #d0d0ff;
  font-size: 1.05rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

/*  */
.team-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 9;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(150,150,255,0.35);
}
.team-card h3 {
  color: #fff;
}
.team-card p {
  color: #d4d4ff;
}


/* === Header overrides to ensure flicker-free first paint === */
header {
  background: #fff; /* keep white base in external CSS too */
  transition: opacity .2s ease, transform .2s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  isolation: isolate;
  overflow: hidden;
}
header.at-top { background: rgba(255,255,255,0.65); }
header::before {
  z-index: 0;
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Form controls inherit site font */
input, textarea, select, button { font: inherit; color: inherit; }
::placeholder { font: inherit; color: #80829a; opacity: 1; }


/* Ensure the GOLA logo text is visible: gradient applied on the anchor itself */
/* GOLA logo gradient text (ensure visible above blur layer) */
.logo a {
  display: inline-block;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.5rem;
}


/* About → Our Values: ensure normal text is fully opaque and readable */
.values-section {
  color: #111; /* default text color inside values section */
}
.values-section h2 {
  background: linear-gradient(135deg, #5b9df9, #9b5df7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* gradient only for the heading */
  color: inherit;
}
.values-section p,
.values-section .values-grid,
.values-section .values-grid *:not(h2) {
  -webkit-text-fill-color: initial; /* undo any accidental transparent fill */
  color: #333;
}
.values-section .value-card h3 { color: #4b4bb0; -webkit-text-fill-color: initial; }
.values-section .value-card p { color: #555; -webkit-text-fill-color: initial; }
header::before { z-index: 0; }
.nav-container, .logo, .logo a, header nav { position: relative; z-index: 1; }



/* ===== Turbo + Fixed Header Offsets ===== */
html { scroll-padding-top: 90px; }
body { padding-top: 80px; }
@media (max-width: 768px) {
  body { padding-top: 64px; }
  html { scroll-padding-top: 74px; }
}
/* Safety: keep header fixed and isolated for repaint performance */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  isolation: isolate;
}
