/* ==========================================================================
   DIGITECHZO CORPORATE WEBSITE - GLOBAL STYLESHEET & CRYPTO LANDING EXTENSIONS
   Design System: Bootstrap 5.3 + Custom CSS Tokens & Micro-Animations
   Color Scheme: Growth Green (#57B71B), Dark Charcoal (#16181b), Surface (#202428), Light (#f8fafc)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-green: #57B71B;
  --primary-green-hover: #469815;
  --primary-green-light: rgba(87, 183, 27, 0.1);
  --primary-green-glow: rgba(87, 183, 27, 0.3);

  /* Dark Theme Palette */
  --dark-bg: #16181b;
  --dark-surface: #202428;
  --dark-border: #2d3238;

  /* Neutral Palette */
  --text-dark: #1e242b;
  --text-body: #4a5568;
  --text-muted: #556070;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;

  /* Typography */
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 8px 20px rgba(87, 183, 27, 0.25);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Core Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: clip;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

p, button, input, select, textarea {
  font-family: var(--font-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Utilities */
.text-accent {
  color: var(--primary-green) !important;
}

.bg-accent {
  background-color: var(--primary-green) !important;
}

.bg-accent-light {
  background-color: var(--primary-green-light) !important;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 16px;
  color: #556070;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 55px 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
}

/* Header & Top Bar */
.top-header-bar {
  background-color: var(--primary-green);
  padding: 6px 0;
}

.social-icon-top {
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.15);
}

.social-icon-top:hover {
  background-color: #ffffff;
  color: var(--primary-green);
}

.navbar-custom {
  background-color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
}

.brand-divider {
  height: 24px;
  width: 2px;
  background-color: var(--primary-green);
  margin: 0 12px;
}

.cursor-blink {
  animation: blink 1s step-end infinite;
  color: var(--primary-green);
}

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

.navbar-custom .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-green);
}

:not(.navbar-custom) .btn-accent {
  background-color: var(--primary-green);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-accent);
  transition: var(--transition-normal);
  cursor: pointer;
}

:not(.navbar-custom) .btn-accent:hover, :not(.navbar-custom) .btn-accent:focus {
  background-color: var(--primary-green-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(87, 183, 27, 0.35);
}

:not(.navbar-custom) .btn-outline-accent {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

:not(.navbar-custom) .btn-outline-accent:hover {
  background-color: var(--primary-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* Offcanvas mobile drawer */
.custom-offcanvas {
  width: 300px !important;
}

.custom-offcanvas .nav-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
}

/* Hero Section */
.hero-crypto {
  background: radial-gradient(circle at 70% 20%, rgba(87, 183, 27, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(32, 36, 40, 0.05) 0%, transparent 50%),
              #f8fafc;
  padding: 100px 0 110px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-crypto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(87, 183, 27, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(87, 183, 27, 0.1);
  border: 1px solid rgba(87, 183, 27, 0.3);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   DIGITECHZO RWA PATTERN - HERO, TRUST BAR, MOCKUP FRAME & MARQUEE
   ========================================================================== */

/* Exact User Uploaded Green Bitcoin Image Asset Styling - Seamless Circular Crop */
.user-green-btc-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -10px;
  margin: 0 10px;
  position: relative;
  width: 60px;
  height: 60px;
}

.user-green-btc-aura {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 240, 56, 0.45) 0%, rgba(87, 183, 27, 0.25) 55%, transparent 75%);
  filter: blur(8px);
  z-index: 1;
  animation: greenAuraPulse 2.5s ease-in-out infinite alternate;
}

.user-green-btc-crop {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: none;
  box-shadow: 0 0 12px rgba(139, 240, 56, 0.4), 
              0 0 22px rgba(87, 183, 27, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: greenBadgePulse 2.5s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

.user-green-btc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(2.35);
  border-radius: 50%;
}

@keyframes greenAuraPulse {
  0% { transform: scale(0.92); opacity: 0.35; }
  100% { transform: scale(1.18); opacity: 0.65; }
}

@keyframes greenBadgePulse {
  0% { transform: scale(0.96) rotate(-3deg); }
  100% { transform: scale(1.06) rotate(3deg); }
}

/* Trust Checkmarks Bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px auto 35px;
  max-width: 980px;
}

.trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}

.trust-item i {
  color: #57B71B;
  font-size: 1rem;
}

/* Interactive Platform Mockup Container - Clean White Style */
.mockup-frame {
  max-width: 980px;
  margin: 30px auto 0;
  background: #0F172A;
  border-radius: 18px;
  border: 1px solid #57B71B;
  box-shadow: 0 20px 50px rgba(87, 183, 27, 0.18);
  overflow: hidden;
  text-align: left;
}

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

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dots .dot.red { background: #ef4444; }
.mockup-dots .dot.yellow { background: #f59e0b; }
.mockup-dots .dot.green { background: #10b981; }

.mockup-title {
  color: #94A3B8;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: monospace;
}

.mockup-content {
  padding: 20px;
  background: #0F172A;
  color: #ffffff;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.tab-btn {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  background: rgba(87, 183, 27, 0.1);
  color: #57B71B;
  border-color: #57B71B;
}

.tab-btn.active {
  background: rgba(87, 183, 27, 0.15);
  color: #57B71B;
  border-color: #57B71B;
  box-shadow: 0 4px 12px rgba(87, 183, 27, 0.2);
}

.screen-view {
  display: none;
}

.screen-view.active {
  display: block;
  animation: fadeInView 0.3s ease;
}

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

.v-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.v-card {
  background: #1E293B;
  border: 1px solid rgba(87, 183, 27, 0.25);
  border-radius: 12px;
  padding: 16px;
}

.v-label {
  font-size: 0.78rem;
  color: #94A3B8;
  display: block;
  margin-bottom: 4px;
}

.v-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-badge {
  font-size: 0.72rem;
  background: rgba(87, 183, 27, 0.15);
  color: #57B71B;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.v-order-row {
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v-order-row.buy {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10B981;
}

.v-order-row.sell {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

.v-order-row span {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: #0F172A;
  color: inherit;
}

/* Supported Blockchain Marquee - Clean White Style */
.blockchain-marquee-wrapper {
  background: #f8fafc;
  color: #1e242b;
  padding: 60px 0 45px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

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

.marquee-badge-pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: #57B71B;
  letter-spacing: 1px;
  background: rgba(87, 183, 27, 0.12);
  border: 1px solid rgba(87, 183, 27, 0.3);
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
}

.marquee-header h3 {
  color: #1e242b;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.marquee-subtext {
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.marquee-track-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 30px 0 25px;
}

.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(90deg, #f8fafc 0%, transparent 100%);
}

.marquee-track-outer::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, transparent 100%);
}

.marquee-track-rtl {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

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

.marquee-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e242b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.marquee-item i {
  font-size: 1.2rem;
  color: #57B71B;
  margin-right: 8px;
}

.blockchain-features-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.bf-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.bf-pill i {
  color: #57B71B;
}

.bf-pill:hover {
  background: #57B71B !important;
  color: #ffffff !important;
  border-color: #57B71B !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(87, 183, 27, 0.3) !important;
}

/* Zigzag Module Row Layout */
.rwa-modules-zigzag-section {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.zigzag-module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .zigzag-module-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .zigzag-module-row > .v-card {
    order: 2 !important;
  }
  .zigzag-module-row > div:not(.v-card) {
    order: 1 !important;
  }
}

/* Core 3-Grid Overview Section */
.core-grid-section {
  padding: 75px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

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

@media (max-width: 991px) {
  .core-grid { grid-template-columns: 1fr; }
}

.core-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.core-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(87, 183, 27, 0.12);
  border-color: rgba(87, 183, 27, 0.3);
}

.core-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(87, 183, 27, 0.1);
  color: #57B71B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.core-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e242b;
  margin-bottom: 10px;
}

.core-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Summary Grid 8-Card Layout */
.features-summary-section {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .summary-grid { grid-template-columns: 1fr; }
}

.s-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.s-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(87, 183, 27, 0.1);
  border-color: rgba(87, 183, 27, 0.3);
}

.s-card i {
  font-size: 1.6rem;
  color: #57B71B;
  margin-bottom: 14px;
  display: block;
}

.s-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e242b;
  margin-bottom: 8px;
}

.s-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-crypto {
    padding: 65px 0 75px 0;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Crypto Graphic Mockup Component */
.crypto-tech-card {
  background: #16181b;
  border: 1px solid #2d3238;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  color: #ffffff;
}

.crypto-tech-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(87, 183, 27, 0.5), transparent, rgba(87, 183, 27, 0.2));
  border-radius: 22px;
  z-index: -1;
}

.network-nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  position: relative;
}

.network-line {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, #57B71B 0%, #202428 50%, #57B71B 100%);
  z-index: 1;
}

.node-item {
  position: relative;
  z-index: 2;
  background: #202428;
  border: 2px solid #57B71B;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #57B71B;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(87, 183, 27, 0.4);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(87, 183, 27, 0.1);
  border: 1px solid rgba(87, 183, 27, 0.3);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-crypto {
    padding: 65px 0 75px 0;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Crypto Graphic Mockup Component */
.crypto-tech-card {
  background: #16181b;
  border: 1px solid #2d3238;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  color: #ffffff;
}

.crypto-tech-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(87, 183, 27, 0.5), transparent, rgba(87, 183, 27, 0.2));
  border-radius: 22px;
  z-index: -1;
}

.network-nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  position: relative;
}

.network-line {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, #57B71B 0%, #202428 50%, #57B71B 100%);
  z-index: 1;
}

.node-item {
  position: relative;
  z-index: 2;
  background: #202428;
  border: 2px solid #57B71B;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #57B71B;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(87, 183, 27, 0.4);
}

/* Section 1: The Real Cost */
.real-cost-card {
  background: linear-gradient(145deg, #16181b 0%, #202428 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #2d3238;
  padding: 3rem;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.real-cost-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(87, 183, 27, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.real-cost-card p {
  color: #e2e8f0 !important;
  font-size: 1.1rem !important;
  line-height: 1.85 !important;
}

/* Section 2: Service Cards */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.25rem 1.75rem;
  height: 100%;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-green);
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(87, 183, 27, 0.12);
  border-color: rgba(87, 183, 27, 0.3);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
}

.service-card p.card-desc {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 1.25rem !important;
  flex-grow: 1;
}

.benefit-badge {
  background: rgba(87, 183, 27, 0.08);
  border-left: 3px solid var(--primary-green);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Section 3: Why Choose Us */
.why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-normal);
  height: 100%;
}

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

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-card p {
  font-size: 0.96rem !important;
  color: #4a5568 !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

/* Section 4: Process Timeline */
.timeline-wrapper {
  position: relative;
  padding: 1rem 0;
}

.timeline-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  height: 100%;
  transition: var(--transition-normal);
}

.timeline-step-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.step-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-green);
  background: var(--primary-green-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.timeline-step-card p {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* Section 5: Benefits Grid */
.benefit-item-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition-fast);
  height: 100%;
}

.benefit-item-card:hover {
  background: #fdfefe;
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.benefit-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item-card p {
  font-size: 0.95rem !important;
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
}

/* Section 6: Real Results Case Studies */
.result-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

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

.result-tag {
  display: inline-block;
  background: rgba(87, 183, 27, 0.1);
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-card p {
  font-size: 0.98rem !important;
  color: #4a5568 !important;
  line-height: 1.7 !important;
}

/* Section 7: FAQ Accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #ffffff;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--text-dark);
  background-color: #ffffff;
}

.faq-accordion .accordion-button:focus {
  border-color: var(--primary-green);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 0.98rem;
  color: #556070;
  line-height: 1.7;
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  background-color: #ffffff;
}

/* Section 8: Final CTA Callout - Clean White Style */
.cta-banner-crypto {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 4rem 2.5rem;
  color: #1e242b;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.cta-banner-crypto::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(87, 183, 27, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-crypto h2 {
  color: #1e242b !important;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner-crypto p {
  color: #475569 !important;
  font-size: 1.1rem !important;
  line-height: 1.75 !important;
  max-width: 780px;
  margin: 0 auto 2.25rem auto;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.25rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
}

/* Footer Styling */
footer {
  font-size: 0.9rem;
}

footer h4 {
  font-weight: 700;
}

.hover-accent:hover {
  color: var(--primary-green) !important;
}

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

/* Sticky Bottom Consultation 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(--primary-green);
  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);
}

@media (max-width: 992px) {
  .sticky-text { display: none; }
  .sticky-container { justify-content: center; }
}

/* Mobile responsive styles for Bitcoin logo & line breaks */
@media (max-width: 768px) {
  .desktop-only-br {
    display: none !important;
  }
  .user-green-btc-wrapper {
    width: 38px !important;
    height: 38px !important;
    vertical-align: -5px !important;
    margin: 0 6px !important;
  }
  .user-green-btc-crop {
    width: 42px !important;
    height: 42px !important;
  }
  .user-green-btc-aura {
    top: -6px !important;
    left: -6px !important;
    right: -6px !important;
    bottom: -6px !important;
  }
  .hero-trust-bar {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 20px auto 25px !important;
  }
  .trust-item {
    width: 310px !important;
    justify-content: flex-start !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
  .screen-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
    margin-bottom: 12px !important;
    gap: 6px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .screen-tabs::-webkit-scrollbar {
    display: none !important;
  }
  .tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
  }
  .mockup-title {
    white-space: nowrap !important;
    font-size: 0.62rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .v-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .v-card {
    padding: 12px !important;
  }
  .v-num {
    font-size: 1.1rem !important;
  }
  .blockchain-features-pills {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .bf-pill {
    width: 270px !important;
    justify-content: flex-start !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
}
