/* =========================================================
   PRO LIVING - FINAL MASTER STYLESHEET (HOSTINGER SAFE)
   ========================================================= */

/* =========================
   1) RESET + BASE
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --electric-blue: #0070ff;
  --sky-blue: #00e0ff;
  --vibrant-purple: #9333ea;
  --light-purple: #c084fc;
  --energetic-orange: #ff7043;
  --bright-orange: #ffa726;
  --neon-green: #22d3ee;
  --mint-green: #4ade80;
  --deep-navy: #1e293b;
  --space-blue: #334155;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --gray: #94a3b8;
  --dark-gray: #334155;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0070ff 0%, #00e0ff 30%, #9333ea 100%);
  --gradient-energy: linear-gradient(135deg, #ff7043 0%, #ffa726 50%, #ffd54f 100%);
  --gradient-success: linear-gradient(135deg, #22d3ee 0%, #4ade80 100%);
  --gradient-hero: linear-gradient(135deg, #1e293b 0%, #3b82f6 40%, #9333ea 70%, #a855f7 100%);
  --gradient-text: linear-gradient(135deg, #00e0ff 0%, #c084fc 50%, #ffa726 100%);

  /* Sizing + spacing */
  --pl-logo-h-desktop: 58px;
  --pl-logo-h-tablet: 48px;
  --pl-logo-h-mobile: 40px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Type + radius + shadow */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);

  /* Motion */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark-gray);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(0, 224, 255, 0.12), transparent 65%),
    radial-gradient(900px 500px at 85% 5%, rgba(255, 167, 38, 0.1), transparent 60%),
    radial-gradient(800px 700px at 50% 90%, rgba(147, 51, 234, 0.08), transparent 60%),
    linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   2) SHARED UI
   ========================= */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 5px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.btn {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-energy);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--sky-blue);
}

.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Backdrop blur guarded */
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .btn-secondary {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .trust-stat {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .stat-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* =========================
   3) NAV
   ========================= */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.93));
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #00e0ff, #9333ea, #ffa726) 1;
  transition: all var(--transition-normal);
}

.nav.scrolled {
  padding: 0.5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--spacing-md);
}

.nav-logo,
.pl-logo-link,
.nav-logo a {
  display: inline-flex;
  align-items: center;
}

.pl-logo-link,
.nav-logo a {
  padding: 8px 12px;
  border-radius: 14px;
  transition: transform 220ms ease;
}

.pl-logo-img,
.logo-img {
  width: auto;
  height: var(--pl-logo-h-desktop);
  max-width: 280px;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.nav.scrolled .pl-logo-img,
.nav.scrolled .logo-img {
  height: 50px;
}

.pl-logo-link:hover .pl-logo-img,
.nav-logo a:hover .logo-img {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 8px 20px rgba(0, 102, 255, 0.4));
}

.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  position: relative;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  color: var(--dark-gray);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--bright-orange), var(--energetic-orange));
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 85%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: var(--electric-blue);
}

/* =========================
   4) HERO (GLOBAL)
   ========================= */
.hero,
.page-hero,
.faq-hero {
  position: relative;
  overflow: hidden;
}

/* White hero title + sweep for ALL hero titles */
.hero-title,
.hero h1,
.page-hero h1,
.case-hero-title,
.faq-hero-title {
  position: relative;
  display: inline-block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

/* FORCE WHITE HERO TITLES EVERYWHERE */
.hero-title,
.hero-title-text,
.hero h1,
.hero h1 span,
.page-hero h1,
.page-hero h1 span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
  filter: none !important;
}

/* =========================
   5) HOME HERO
   ========================= */
.hero {
  min-height: 100vh;
  padding: var(--spacing-2xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 224, 255, 0.35), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.35), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 167, 38, 0.2), transparent 60%);
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation: fadeInUp 1s ease-out;
}

.hero-title-subline {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.95;
}

.hero-subtitle {
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
  margin-bottom: var(--spacing-xl);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* =========================
   6) TRUST BAR
   ========================= */
.trust-bar {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #0070ff 0%, #00e0ff 25%, #9333ea 50%, #c084fc 75%, #ffa726 100%);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-stat {
  min-height: 160px;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  transition: transform var(--transition-normal);
}

.trust-stat:hover {
  transform: translateY(-8px);
}

.trust-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-label {
  display: block;
  margin-top: 0.4rem;
  font-weight: 700;
}

/* =========================
   7) FEATURES / PARTNERS / STATS
   ========================= */
.section-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-section,
.ecosystem-visual {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, var(--light-gray), var(--white));
}

.features-grid,
.partners-grid,
.ecosystem-grid,
.stats-grid {
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card,
.partner-card,
.ecosystem-item,
.stat-card {
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 112, 255, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover,
.partner-card:hover,
.ecosystem-item:hover,
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-title,
.ecosystem-title {
  margin-bottom: var(--spacing-sm);
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-description,
.ecosystem-desc {
  color: var(--gray);
  line-height: 1.7;
}

/* =========================
   8) STATS SECTION
   ========================= */
.stats-section {
  position: relative;
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #db2777 100%);
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15), transparent 60%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label,
.stat-context {
  color: rgba(255, 255, 255, 0.92);
}

/* =========================
   9) CTA
   ========================= */
.cta-section {
  position: relative;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: var(--spacing-md);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}

.cta-subtitle {
  margin-bottom: var(--spacing-xl);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   10) MARKETS PAGE
   ========================= */
.page-hero {
  padding: var(--spacing-2xl) 0;
  color: var(--white);
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #9333ea 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--spacing-xl);
  align-items: center;
  grid-template-columns: 1.2fr 1fr;
}

.hero-copy h1 {
  margin-bottom: var(--spacing-md);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-copy .lead {
  margin-bottom: var(--spacing-lg);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.trust-pill {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.market-grid {
  display: grid;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.market-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--spacing-lg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(0, 224, 255, 0.15);
  background: rgba(255, 255, 255, 0.95);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.market-image {
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #9333ea);
}

.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-content {
  padding: var(--spacing-xl);
}

.market-content h3 {
  margin-bottom: var(--spacing-md);
  color: var(--electric-blue);
  font-size: 1.8rem;
}

.market-content p,
.market-content li {
  color: var(--dark-gray);
  line-height: 1.7;
}

/* =========================
   11) FAQ PAGE
   ========================= */
.faq-hero {
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  background: var(--gradient-hero);
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.faq-main {
  padding: var(--spacing-2xl) 0;
  background: #f8fafc;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto var(--spacing-2xl);
}

.faq-item {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-xl);
  border-radius: 18px;
  border: 2px solid rgba(0, 112, 255, 0.1);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.faq-title {
  color: var(--deep-navy);
  font-size: 1.5rem;
  font-weight: 700;
}

.faq-answer {
  margin-top: var(--spacing-md);
  color: var(--dark-gray);
  line-height: 1.8;
}

.faq-list,
.checklist,
.benefits-list {
  list-style: none;
  margin-top: var(--spacing-md);
}

.checklist li,
.faq-list li,
.benefits-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.checklist li::before,
.faq-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--energetic-orange);
}

/* =========================
   12) CASE STUDIES PAGE
   ========================= */
.case-studies-page {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.02), rgba(10, 14, 39, 0));
}

.page-hero.case-hero {
  padding-top: 120px;
}

.case-hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.case-hero-copy {
  text-align: center;
}

.case-hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.03em;
}

.case-hero-lead {
  max-width: 60ch;
  margin: 0 auto 22px;
}

.case-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.case-hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.case-hero-side {
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.case-hero-side .hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
}

/* Case study grid */
.case-studies-section {
  position: relative;
  padding: var(--spacing-2xl) 0;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.case-card {
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid rgba(0, 224, 255, 0.35);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.case-card-top,
.case-body {
  padding: var(--spacing-xl);
}

.case-card-top {
  background: linear-gradient(135deg, rgba(0, 224, 255, 0.12), rgba(147, 51, 234, 0.12));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.case-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #00e0ff, #9333ea, #ffa726);
}

.case-title {
  margin-bottom: 8px;
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
}

.case-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: var(--spacing-sm);
}

/* =========================
   13) JOURNEY + FORM
   ========================= */
.pl-90day-journey {
  padding: 80px 0;
  background: #fff;
}

.pl-90day-header {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.pl-90day-header h2 {
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1.15;
}

.pl-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.pl-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(77, 161, 255, 0.25), rgba(140, 66, 255, 0.35));
}

.pl-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin: 34px 0;
}

.pl-node {
  grid-column: 2;
  justify-self: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: #5a67d8;
  display: grid;
  place-items: center;
}

.pl-card {
  width: min(480px, 100%);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.pl-step.left .pl-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 14px;
}

.pl-step.right .pl-card {
  grid-column: 3;
  justify-self: start;
  margin-left: 14px;
}

.form-card {
  padding: clamp(22px, 2.2vw, 34px);
}

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

.field label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark-gray);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid rgba(25, 120, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
}

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

.phone-callout {
  text-align: center;
  border-radius: 16px;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.1), rgba(120, 0, 255, 0.08));
  border: 1px solid rgba(0, 140, 255, 0.22);
}

/* =========================
   14) FOOTER
   ========================= */
.footer {
  position: relative;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
}

.footer-content,
.footer-grid {
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.footer-logo img {
  width: auto;
  height: 54px;
  max-width: 240px;
  object-fit: contain;
}

.footer-section h3 {
  margin-bottom: var(--spacing-md);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--sky-blue);
}

.footer-bottom {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   15) ANIMATIONS
   ========================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes moveGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes heroTitleSweep {
  0% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
  15% { opacity: 0.5; }
  45% { transform: translateX(120%) skewX(-12deg); opacity: 0.3; }
  100% { transform: translateX(120%) skewX(-12deg); opacity: 0; }
}

/* =========================
   16) RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .market-card {
    grid-template-columns: 1fr;
  }

  .market-image {
    height: 300px;
  }

  .case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pl-logo-img,
  .logo-img {
    height: var(--pl-logo-h-tablet);
    max-width: 220px;
  }

  .page-hero.case-hero {
    padding-top: 110px;
  }

  .pl-90day-header h2 {
    font-size: 34px;
  }

  .pl-timeline::before {
    left: 18px;
    transform: none;
  }

  .pl-step {
    grid-template-columns: 36px 1fr;
    margin: 20px 0;
  }

  .pl-node {
    grid-column: 1;
    justify-self: start;
  }

  .pl-step.left .pl-card,
  .pl-step.right .pl-card {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    margin: 0 0 0 14px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(10, 14, 39, 0.98);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    color: var(--white);
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .features-grid,
  .partners-grid,
  .ecosystem-grid,
  .stats-grid,
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .faq-hero-title {
    font-size: 2rem;
  }

  .faq-item {
    padding: var(--spacing-lg);
  }

  .case-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .case-hero-side {
    justify-self: center;
    align-self: start;
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .pl-logo-img,
  .logo-img {
    height: var(--pl-logo-h-mobile);
    max-width: 180px;
  }

  .footer-logo img {
    height: 38px;
    max-width: 170px;
  }

  .hero {
    padding: var(--spacing-xl) 0;
  }

  .page-hero.case-hero {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 1.8rem;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }
}

/* =========================
   17) REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   FINAL OVERRIDES: HERO TITLES + STROBE + FOOTER MATCH
   ========================================================= */

/* ---------- HERO TITLE CLEAN + STRONGER SLOWER SWEEP ---------- */
.hero-title,
.hero h1,
.page-hero h1,
.case-hero-title,
.faq-hero-title,
.start-journey-hero h1 {
  position: relative;
  display: inline-block;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  isolation: isolate;
}

.hero-title::after,
.hero h1::after,
.page-hero h1::after,
.case-hero-title::after,
.faq-hero-title::after,
.start-journey-hero h1::after {
  content: "";
  position: absolute;
  top: -25%;
  right: -35%;
  bottom: -25%;
  left: -35%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.2) 60%,
    transparent 75%
  );
  transform: translateX(-140%) skewX(-12deg);
  opacity: 0.9;
  filter: blur(1px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroTitleSweepStrong 12s ease-in-out infinite;
}

@keyframes heroTitleSweepStrong {
  0%   { transform: translateX(-140%) skewX(-12deg); opacity: 0; }
  15%  { opacity: 0.9; }
  40%  { transform: translateX(140%) skewX(-12deg); opacity: 0.35; }
  100% { transform: translateX(140%) skewX(-12deg); opacity: 0; }
}

/* Remove blur/glass wrappers around titles */
.hero-title-wrap,
.title-box,
.glass-title,
.hero-title-bg,
.hero-title-overlay,
.hero-title-panel {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

/* ---------- CASE STUDIES HERO SPACING ---------- */
.page-hero.case-hero {
  padding-top: 130px !important;
}

@media (max-width: 768px) {
  .page-hero.case-hero {
    padding-top: 110px !important;
  }
}

/* ---------- FOOTER MATCH START YOUR JOURNEY ---------- */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #111827 60%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e0ff, #9333ea, #ffa726, transparent);
  opacity: 0.8;
}

.footer-section h3 {
  color: #ffffff;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--sky-blue);
}

.footer-tagline {
  background: linear-gradient(135deg, #00e0ff 0%, #ffa726 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 20px rgba(0, 224, 255, 0.25);
}

/* Highlight border around footer photos/logos */
.footer .footer-logo img,
.footer .footer-photo img,
.footer .footer-image img,
.footer img.footer-photo,
.footer img.footer-image {
  outline: 2px solid rgba(0, 224, 255, 0.6);
  outline-offset: 4px;
  border-radius: 14px;
  box-shadow:
    0 0 18px rgba(0, 224, 255, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.35);
  background: rgba(15, 23, 42, 0.35);
}

/* ================================
   WHAT OUR PARTNERS SAY — POP CARD
   ================================ */
.testimonial-section .container {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(0, 224, 255, 0.55);
  border-radius: 24px;
  padding: clamp(28px, 3.2vw, 44px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 0 36px rgba(0, 224, 255, 0.25);
}

/* Headline pop */
.testimonial-section .section-subtitle,
.testimonial-section h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body text clarity */
.testimonial-section p,
.testimonial-section li {
  color: #334155;
}

/* Optional: if you use .testimonial cards */
.testimonial-section .testimonial {
  border: 2px solid rgba(147, 51, 234, 0.25);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   WHAT OUR PARTNERS SAY — CASE STUDY CARD STYLE
   ========================================================= */
.testimonial-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.testimonial-section .container {
  max-width: 1100px;
}

.testimonial-section .section-subtitle,
.testimonial-section h2 {
  text-align: center;
  font-weight: 900;
  background: linear-gradient(90deg, #00e0ff 0%, #9333ea 60%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main card block */
.testimonial-section .testimonial,
.testimonial-section .testimonial-card,
.testimonial-section .testimonial-wrap,
.testimonial-section .testimonial-content {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  border: 2px solid rgba(0, 224, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(147, 51, 234, 0.18),
    0 18px 55px rgba(0, 0, 0, 0.12);
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}

/* Soft gradient band like case study top */
.testimonial-section .testimonial::before,
.testimonial-section .testimonial-card::before,
.testimonial-section .testimonial-wrap::before,
.testimonial-section .testimonial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 70px;
  background: linear-gradient(135deg, rgba(0,224,255,0.12), rgba(147,51,234,0.12));
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 0;
}

.testimonial-section .testimonial * ,
.testimonial-section .testimonial-card * ,
.testimonial-section .testimonial-wrap * ,
.testimonial-section .testimonial-content * {
  position: relative;
  z-index: 1;
}

/* Quote text styling */
.testimonial-section p,
.testimonial-section li {
  color: #334155;
  line-height: 1.8;
}

/* =========================================================
   TESTIMONIALS — CASE STUDY CARD LOOK
   ========================================================= */
.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: var(--spacing-2xl) 0;
}

.testimonial-section .section-subtitle {
  color: transparent !important;
  background: linear-gradient(90deg, #00e0ff 0%, #9333ea 60%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card look for each quote */
.testimonial-section .testimonial {
  display: block;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid rgba(0, 224, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(147, 51, 234, 0.18),
    0 18px 55px rgba(0, 0, 0, 0.12);
  padding: clamp(22px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}

/* Soft top band (like case study cards) */
.testimonial-section .testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 70px;
  background: linear-gradient(135deg, rgba(0,224,255,0.12), rgba(147,51,234,0.12));
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 0;
}

.testimonial-section .testimonial * {
  position: relative;
  z-index: 1;
}

/* Typography inside card */
.testimonial-section .testimonial-quote {
  color: #334155;
  line-height: 1.8;
  font-weight: 500;
}

.testimonial-section .testimonial-author {
  color: #0f172a;
  font-weight: 700;
  margin-top: var(--spacing-sm);
}

/* =========================================================
   TESTIMONIALS — CARD BORDER ON WRAPPER (FIXED)
   ========================================================= */
.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: var(--spacing-2xl) 0;
}

.testimonial-section .section-subtitle {
  color: transparent !important;
  background: linear-gradient(90deg, #00e0ff 0%, #9333ea 60%, #ffa726 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Put the big card on the carousel wrapper */
.testimonial-carousel {
  background: rgba(255, 255, 255, 0.97) !important;
  border-radius: 24px !important;
  border: 2px solid rgba(0, 224, 255, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(147, 51, 234, 0.18),
    0 18px 55px rgba(0, 0, 0, 0.12) !important;
  padding: clamp(24px, 3vw, 40px) !important;
  position: relative;
  overflow: hidden;
}

/* Soft gradient band */
.testimonial-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 70px;
  background: linear-gradient(135deg, rgba(0,224,255,0.12), rgba(147,51,234,0.12));
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 0;
}

.testimonial-carousel * {
  position: relative;
  z-index: 1;
}

/* =========================================
   HERO TITLES — CLEAN + STRONGER SLOWER SWEEP
   ========================================= */

/* Clean white text (no blur or blend) */
.hero-title,
.hero h1,
.page-hero h1,
.case-hero-title,
.faq-hero-title {
  position: relative;
  display: inline-block;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  filter: none !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
  mix-blend-mode: normal !important;
  isolation: isolate;
  z-index: 0;
}

/* Ensure inner span stays crisp */
.hero-title .hero-title-text,
.hero h1 span,
.page-hero h1 span,
.case-hero-title span,
.faq-hero-title span {
  position: relative;
  z-index: 2;
  filter: none !important;
}

/* Remove any old glow/blur layers */
.hero-title::before,
.hero h1::before,
.page-hero h1::before,
.case-hero-title::before,
.faq-hero-title::before {
  content: none !important;
}

/* Stronger, slower sweep (behind text, not on top) */
.hero-title::after,
.hero h1::after,
.page-hero h1::after,
.case-hero-title::after,
.faq-hero-title::after {
  content: "";
  position: absolute;
  top: -25%;
  right: -35%;
  bottom: -25%;
  left: -35%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.25) 60%,
    transparent 75%
  );
  transform: translateX(-140%) skewX(-12deg);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1; /* behind text */
  animation: heroTitleSweepClean 12s ease-in-out infinite;
}

@keyframes heroTitleSweepClean {
  0%   { transform: translateX(-140%) skewX(-12deg); opacity: 0; }
  15%  { opacity: 0.9; }
  40%  { transform: translateX(140%) skewX(-12deg); opacity: 0.35; }
  100% { transform: translateX(140%) skewX(-12deg); opacity: 0; }
}

/* ======================================
   START JOURNEY — REMOVE GLASS BLUR BOX
   ====================================== */
section.hero h1.hero-title,
section.hero h1.hero-title .hero-title-text {
  filter: none !important;
  -webkit-filter: none !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
}

/* Kill any blur/glass wrappers inside hero */
section.hero,
section.hero * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Remove any blurred background block behind title */
section.hero .hero-title::before,
section.hero .hero-title::after,
section.hero .hero-title-text::before,
section.hero .hero-title-text::after {
  content: none !important;
}

/* =========================================================
   FAQ PAGE — RESTORE CLEAN ORIGINAL LAYOUT
   ========================================================= */

/* Hero: clean + light */
.faq-hero {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 4.5rem 0 2.5rem !important;
}

.faq-hero-title {
  color: #0f172a !important;
  background: none !important;
  -webkit-text-fill-color: #0f172a !important;
  text-shadow: none !important;
  font-weight: 800;
}

.faq-hero-subtitle {
  color: #475569 !important;
}

/* Main wrapper */
.faq-main {
  background: #ffffff !important;
  padding: 3rem 0 5rem !important;
}

/* FAQ items: light, no glass */
.faq-item {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 2rem !important;
}

.faq-title {
  color: #0f172a !important;
  font-weight: 700;
}

.faq-answer {
  color: #334155 !important;
  line-height: 1.8;
  font-size: 1rem;
}

/* "Why This Matters" section: make it plain like old */
.why-matters {
  background: #ffffff !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 2.5rem !important;
}

.why-matters::before {
  display: none !important;
}

.why-matters-title {
  color: #0f172a !important;
  background: none !important;
  -webkit-text-fill-color: #0f172a !important;
  text-align: left !important;
  font-size: 1.6rem !important;
  margin-bottom: 0.75rem !important;
}

.why-matters-text {
  color: #334155 !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}

/* Checklist / bullets like old */
.faq-list,
.checklist,
.benefits-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1rem 0 1.5rem !important;
}

.faq-list li,
.checklist li,
.benefits-list li {
  position: relative;
  padding-left: 1.6rem !important;
  margin-bottom: 0.6rem !important;
  color: #334155 !important;
}

.faq-list li::before,
.checklist li::before,
.benefits-list li::before {
  content: "✓" !important;
  position: absolute;
  left: 0;
  color: #ff7a45 !important;
  font-weight: 700;
}

/* CTA inside FAQ if present */
.why-matters-cta,
.cta-text {
  color: #334155 !important;
}

/* ======================================
   FOOTER LOGO GLOW (POP EFFECT)
   ====================================== */
.footer .footer-logo {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px !important;
  border-radius: 18px !important;
}

/* Glow halo behind logo */
.footer .footer-logo::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.65), rgba(0, 224, 255, 0) 70%);
  filter: blur(12px);
  opacity: 0.9;
  z-index: 0;
}

/* Keep actual logo on top */
.footer .footer-logo img,
.footer .footer-logo svg {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

/* Optional stronger border */
.footer .footer-logo {
  border: 2px solid rgba(0, 224, 255, 0.55);
  box-shadow: 0 0 22px rgba(0, 224, 255, 0.35);
}

/* =========================================
   FORCE WHITE HERO TITLES (HOME/ECO/MARKETS)
   ========================================= */
.hero h1,
.hero .hero-title,
.hero .hero-title-text,
.hero h1 span,
.page-hero h1,
.page-hero .hero-copy h1,
.page-hero h1 span {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
  filter: none !important;
}

/* Also neutralize any global gradient override */
.title-gradient,
.text-gradient-override,
.section-subtitle,
.hero-title,
.hero h1 {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

/* FORCE WHITE HERO TITLES */
.hero-title,
.hero-title-text,
.hero h1,
.hero h1 span,
.page-hero h1,
.page-hero h1 span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
}

