/* Digitechzo Theme - Web3 Development Company Landing Page (White Theme) */

:root {
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-dark-hero: #0F172A;
  --bg-dark-card: #1E293B;
  
  --border-light: #E2E8F0;
  --border-green: rgba(87, 183, 27, 0.35);
  --border-green-solid: #57B71B;
  --border-gold: rgba(245, 158, 11, 0.4);
  
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  
  /* Brand Growth Green (#57B71B) */
  --green-primary: #57B71B;
  --green-cyber: #469815;
  --green-hover: #3b8210;
  --green-light: #F0FDF0;
  --green-glow: rgba(87, 183, 27, 0.2);
  
  --gold-primary: #D97706;
  --gold-light: #FDE047;
  --gold-bg: #FEF3C7;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  --container-max: 1320px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-green: 0 10px 30px rgba(87, 183, 27, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base scoped to main layouts */
/* Force Manrope globally to match homepage exactly, leaving icons untouched */
body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea,
span:not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.bi):not([class*="fa-"]):not([class*="bi-"]),
i:not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.bi):not([class*="fa-"]):not([class*="bi-"]) {
  font-family: 'Manrope', sans-serif !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

/* Color & Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scoped Buttons to prevent navbar conflicts */
:not(.navbar-custom) .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  white-space: nowrap;
  position: relative;
  border: none;
  cursor: pointer;
}

:not(.navbar-custom) .btn-pill-primary {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-hover) 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(87, 183, 27, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

:not(.navbar-custom) .btn-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(87, 183, 27, 0.5);
  background: linear-gradient(135deg, var(--green-cyber) 0%, var(--green-primary) 100%);
}

:not(.navbar-custom) .btn-pill-secondary {
  background: #FFFFFF;
  color: var(--text-dark) !important;
  border: 1px solid var(--border-green) !important;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

:not(.navbar-custom) .btn-pill-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--green-primary) !important;
  color: var(--text-dark) !important;
  box-shadow: var(--shadow-green);
}

:not(.navbar-custom) .btn-pill-green {
  background: var(--green-light);
  color: var(--green-cyber) !important;
  border: 1px solid var(--border-green) !important;
  padding: 10px 22px;
  font-size: 0.9rem;
  text-decoration: none;
}

:not(.navbar-custom) .btn-pill-green:hover {
  background: var(--green-primary);
  color: #FFFFFF !important;
  border-color: var(--green-primary) !important;
  box-shadow: var(--shadow-green);
}

:not(.navbar-custom) .btn-block {
  width: 100%;
}

/* Badges & Pills */
.badge-pill-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--green-light);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.highlight-green {
  color: var(--green-cyber);
}

.pill-icon-green {
  color: var(--green-primary);
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--green-light);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-pill);
  color: var(--green-cyber);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 120px 0 80px;
  background: #ffffff !important;
  background-image: none !important;
}

.hero-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 1100px;
  margin: 0 auto 20px;
  color: var(--text-dark);
  line-height: 1.35;
}

/* Web3 Orbiting Globe & Node Animation */
.web3-globe-headline-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  vertical-align: middle;
}

.gradient-text-animated {
  color: var(--green-primary);
  display: inline-block;
}

.web3-orb-animation {
  position: relative;
  width: 90px;
  height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 8px;
}

/* Central Glowing Sphere */
.orb-globe-core {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(87, 183, 27, 0.45) 0%, rgba(15, 23, 42, 0.95) 75%, #0F172A 100%);
  border: 1.5px solid rgba(87, 183, 27, 0.7);
  box-shadow: 0 0 25px rgba(87, 183, 27, 0.55), inset 0 0 15px rgba(59, 130, 246, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  animation: float-globe 3s ease-in-out infinite alternate;
}

@keyframes float-globe {
  0% { transform: translateY(0px) scale(0.98); }
  100% { transform: translateY(-6px) scale(1.03); }
}

.globe-svg-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ring-spin-outer {
  transform-origin: center;
  animation: spin-ring 12s linear infinite;
}

.ring-spin-inner {
  transform-origin: center;
  animation: spin-ring-reverse 8s linear infinite;
}

.ring-spin-vertical {
  transform-origin: center;
  animation: spin-ring 10s linear infinite;
}

@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-ring-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.orb-core-text {
  font-size: 0.65rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(87, 183, 27, 0.9), 0 0 12px rgba(59, 130, 246, 0.9);
  z-index: 6;
  font-family: var(--font-heading);
}

/* Horizontal Beam / Lens Flare */
.orb-lens-flare {
  position: absolute;
  bottom: 4px;
  width: 110px;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.8) 30%, rgba(87, 183, 27, 1) 50%, rgba(59, 130, 246, 0.8) 70%, transparent 100%);
  border-radius: 50%;
  filter: blur(2px);
  box-shadow: 0 0 14px rgba(87, 183, 27, 0.9);
  animation: pulse-beam 2s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes pulse-beam {
  0% { opacity: 0.5; transform: scaleX(0.8); }
  100% { opacity: 1; transform: scaleX(1.2); }
}

/* Orbiting Node Icons */
.orb-node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(87, 183, 27, 0.7);
  color: #57B71B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  box-shadow: 0 0 8px rgba(87, 183, 27, 0.6);
  z-index: 10;
  transition: all 0.3s ease;
}

/* Orbiting animations */
.node-1 { animation: orbit-1 6s linear infinite; }
.node-2 { animation: orbit-2 7s linear infinite; }
.node-3 { animation: orbit-3 8s linear infinite; }
.node-4 { animation: orbit-4 6.5s linear infinite; }
.node-5 { animation: orbit-5 9s linear infinite; }
.node-6 { animation: orbit-6 7.5s linear infinite; }

@keyframes orbit-1 {
  0% { transform: translate(-42px, -20px) scale(0.9); }
  25% { transform: translate(0px, -45px) scale(1.1); color: #60A5FA; border-color: #60A5FA; }
  50% { transform: translate(42px, -15px) scale(0.9); }
  75% { transform: translate(0px, 20px) scale(0.75); opacity: 0.6; }
  100% { transform: translate(-42px, -20px) scale(0.9); }
}

@keyframes orbit-2 {
  0% { transform: translate(42px, -22px) scale(0.95); }
  25% { transform: translate(10px, 22px) scale(0.75); opacity: 0.6; }
  50% { transform: translate(-42px, -10px) scale(0.9); }
  75% { transform: translate(0px, -42px) scale(1.1); color: #57B71B; }
  100% { transform: translate(42px, -22px) scale(0.95); }
}

@keyframes orbit-3 {
  0% { transform: translate(0px, -44px) scale(1.1); color: #38BDF8; }
  50% { transform: translate(0px, 25px) scale(0.7); opacity: 0.5; }
  100% { transform: translate(0px, -44px) scale(1.1); color: #38BDF8; }
}

@keyframes orbit-4 {
  0% { transform: translate(-35px, 15px) scale(0.8); }
  50% { transform: translate(35px, -35px) scale(1.15); color: #F59E0B; border-color: #F59E0B; }
  100% { transform: translate(-35px, 15px) scale(0.8); }
}

@keyframes orbit-5 {
  0% { transform: translate(38px, 10px) scale(0.85); }
  50% { transform: translate(-38px, -30px) scale(1.1); }
  100% { transform: translate(38px, 10px) scale(0.85); }
}

@keyframes orbit-6 {
  0% { transform: translate(-20px, -38px) scale(1); }
  50% { transform: translate(20px, 20px) scale(0.8); }
  100% { transform: translate(-20px, -38px) scale(1); }
}

/* Glowing Particles */
.orb-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #57B71B;
  box-shadow: 0 0 6px #57B71B;
}
.orb-particle.p1 { top: 10px; left: 15px; animation: float-p 2.2s ease-in-out infinite alternate; }
.orb-particle.p2 { bottom: 15px; right: 12px; background: #60A5FA; box-shadow: 0 0 6px #60A5FA; animation: float-p 3.1s ease-in-out infinite alternate-reverse; }
.orb-particle.p3 { top: 20px; right: 20px; background: #F59E0B; box-shadow: 0 0 6px #F59E0B; animation: float-p 2.7s ease-in-out infinite alternate; }
.orb-particle.p4 { bottom: 10px; left: 25px; animation: float-p 1.9s ease-in-out infinite alternate-reverse; }

@keyframes float-p {
  0% { transform: translateY(0px) scale(0.8); opacity: 0.4; }
  100% { transform: translateY(-8px) scale(1.4); opacity: 1; }
}

.title-web3-highlight {
  position: relative;
  color: var(--text-dark);
}

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-cyber);
  max-width: 820px;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-body);
  max-width: 880px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 50px;
  padding: 12px 0;
  background: transparent;
  box-shadow: none;
}

.trust-item i {
  color: var(--green-primary);
  margin-right: 6px;
}

/* Mockup Frame & Interactive Inspector */
.mockup-frame {
  width: 100%;
  max-width: 1050px;
  background: var(--bg-dark-hero);
  border: 1px solid var(--border-green-solid);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(87, 183, 27, 0.18);
  overflow: hidden;
  margin-bottom: 60px;
}

.mockup-header-bar {
  background: #090F1E;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-title {
  font-size: 0.82rem;
  color: #94A3B8;
  margin-left: 12px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-content {
  padding: 24px;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.screen-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: rgba(87, 183, 27, 0.2);
  color: #57B71B;
  border-color: var(--green-primary);
}

.screen-view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.screen-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.v-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(87, 183, 27, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
}

.v-card.highlight {
  border-color: var(--green-primary);
  background: linear-gradient(145deg, var(--bg-dark-card), rgba(87, 183, 27, 0.12));
}

.v-label {
  font-size: 0.8rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.v-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 6px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(87, 183, 27, 0.2);
  color: #57B71B;
}

.v-badge.green {
  background: rgba(87, 183, 27, 0.25);
  color: #57B71B;
}

.v-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.v-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--green-cyber));
  border-radius: 4px;
}

/* Sparkline design */
.v-sparkline svg {
  overflow: visible;
}

/* Marquee Section */
.blockchain-marquee-wrapper {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  width: 100%;
  text-align: center;
}

.marquee-header {
  text-align: center;
  margin-bottom: 24px;
}

.marquee-badge-pill {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-cyber);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-header h3 {
  font-size: 1.45rem;
  margin-top: 6px;
  color: var(--text-dark);
  font-weight: 800;
}

.marquee-track-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  background: #ffffff !important;
  border-top: none !important;
  border-bottom: none !important;
}

.marquee-track-outer::before, .marquee-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-track-outer::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent) !important;
}

.marquee-track-outer::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent) !important;
}

.marquee-track-rtl {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
  align-items: center;
}

.marquee-track-outer:hover .marquee-track-rtl,
.marquee-track-rtl:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #000000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.marquee-item:hover {
  transform: translateY(-2px);
  border-color: var(--green-primary);
  box-shadow: 0 8px 20px rgba(87, 183, 27, 0.15);
}

.marquee-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

.marquee-logo-wide {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

.marquee-logo-square {
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: left center;
  border-radius: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Intro & Contrast Section */
.intro-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.intro-box {
  background: var(--bg-page);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.intro-right {
  position: relative;
}

.intro-highlight {
  background: #FFFFFF;
  border-left: 4px solid var(--green-primary);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-page);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid var(--border-green);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.96rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.benefit-badge {
  background: var(--green-light);
  border-left: 4px solid var(--green-primary);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.benefit-badge strong {
  color: var(--green-cyber);
}

/* Zigzag Module Showcase */
.zigzag-module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.zigzag-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.zigzag-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.zigzag-img-wrapper:hover img {
  transform: scale(1.03);
}

.rm-step {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-cyber);
  letter-spacing: 0.05em;
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition-normal);
}

.why-card:hover {
  border-color: var(--green-primary);
  background: #FFFFFF;
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

.why-number {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-cyber);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.94rem;
  color: var(--text-body);
}

/* Process Roadmap Section */
.process-section {
  padding: 80px 0;
  background: var(--bg-page);
}

.roadmap-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.rm-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  width: calc(33.333% - 16px);
  min-width: 300px;
  max-width: 360px;
  box-sizing: border-box;
}

.rm-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}

.rm-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.rm-card p {
  font-size: 0.93rem;
  color: var(--text-body);
}

/* What You Get Section */
.get-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.get-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.get-item:hover {
  border-color: var(--green-primary);
  background: var(--green-light);
  box-shadow: var(--shadow-sm);
}

.get-item i {
  color: var(--green-primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Real Outcomes Section */
.results-section {
  padding: 80px 0;
  background: var(--bg-page);
}

.narrative-card {
  background: var(--bg-white);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 44px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--green-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  background: #FFFFFF;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border-light);
}

.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF0 100%);
}

.final-cta-box {
  background: #FFFFFF;
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(87, 183, 27, 0.15);
  color: var(--text-dark);
}

.final-cta-box h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.final-cta-box p {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 36px;
}

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

/* Sticky Bottom Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--green-primary);
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  text-align: left;
}

.sticky-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.sticky-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 2.4rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .zigzag-module-row { grid-template-columns: 1fr; gap: 30px; }
  .zigzag-module-row .zigzag-img-wrapper { order: 2; }
  .zigzag-module-row > div:not(.zigzag-img-wrapper) { order: 1; }
  .nav-links { display: none; }
  .brand-logo-img { height: 60px; }
  .web3-orb-animation { width: 70px; height: 70px; }
  .orb-globe-core { width: 54px; height: 54px; }
  .rm-card { width: 100%; max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.9rem; }
  .hero-title br { display: none; }
  .hero-tagline { font-size: 1.1rem; }
  .section-title h2 { font-size: 1.7rem; }
  .mockup-content { padding: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .get-grid { grid-template-columns: 1fr; }

  /* Trust bar: single column on mobile */
  .hero-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    margin-bottom: 28px;
    padding: 0 8px;
  }
  .screen-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 12px;
    gap: 6px;
  }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .v-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .v-card {
    padding: 12px;
  }
  .v-num {
    font-size: 1.3rem;
  }
  .sticky-text { display: none; }
  .sticky-container { justify-content: center; }
  .brand-logo-img { height: 54px; }
  .web3-globe-headline-wrapper { display: inline-flex; align-items: center; gap: 6px; }
  .web3-orb-animation { display: inline-flex !important; width: 40px !important; height: 40px !important; margin-left: 4px !important; margin-top: 0 !important; }
  .orb-globe-core { width: 30px !important; height: 30px !important; }
  .orb-node { width: 12px !important; height: 12px !important; font-size: 0.35rem !important; }
  .orb-particle { width: 3px !important; height: 3px !important; }
  .why-grid { grid-template-columns: 1fr; }
  
  /* Mobile padding optimization to prevent squished layouts */
  .intro-box { padding: 24px 16px; }
  .narrative-card { padding: 24px 16px; }
  .final-cta-box { padding: 36px 16px; }
  .service-card { padding: 24px 16px; }
  .why-card { padding: 24px 16px; }
  .zigzag-module-row { padding: 20px 16px; }
  .hero-section { padding-top: 80px; }

  /* Mobile button wrapping and alignment fix */
  :not(.navbar-custom) .btn {
    white-space: normal !important;
    text-align: center;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    max-width: 100%;
    word-break: break-word;
  }
}

/* Container Overrides for Global Header/Footer Alignment */
header .container, footer .container {
  max-width: 1320px !important;
}
