/*
Theme Name:  CryptoGuideCenter
Theme URI:   https://www.cryptoguidecenter.com
Author:      CryptoGuideCenter
Author URI:  https://www.cryptoguidecenter.com
Description: Fintech Dark Mode WordPress theme for CryptoGuideCenter.com — independent third-party crypto guidance and support hub.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cryptoguidecenter
Tags:        dark, one-column, custom-menu, featured-images, full-width-template, fintech
*/

/* =============================================
   CSS CUSTOM PROPERTIES — FINTECH DARK MODE
============================================= */
:root {
  --bg-primary:    #0A192F;
  --bg-secondary:  #112240;
  --bg-card:       #1D3461;
  --bg-card-hover: #243d70;
  --accent:        #00D4FF;
  --accent-hover:  #00AACC;
  --accent-dim:    rgba(0, 212, 255, 0.12);
  --text-primary:  #E6F1FF;
  --text-muted:    #8892B0;
  --success:       #00FF94;
  --warning:       #FFB800;
  --warning-dim:   rgba(255, 184, 0, 0.08);
  --danger:        #FF6B6B;
  --border:        rgba(0, 212, 255, 0.15);
  --border-card:   rgba(0, 212, 255, 0.1);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-hover:  0 16px 48px rgba(0, 212, 255, 0.12);
  --transition:    0.22s ease;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* WordPress core alignment helpers */
.alignleft  { float: left;  margin-right: 1.5em; }
.alignright { float: right; margin-left:  1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute !important;
}

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

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

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

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: var(--bg-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  color: var(--accent);
}

.btn-card {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  margin-top: 16px;
}
.btn-card:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.card-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

.step-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* =============================================
   TRUST STRIP
============================================= */
.trust-strip {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-check {
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-primary);
  font-weight: 800;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.logo-text span { color: var(--accent); }

/* WordPress nav menu output */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-links li { margin: 0; padding: 0; }
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.navbar-links a:hover,
.navbar-links .current-menu-item > a { color: var(--text-primary); }

.navbar-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Navbar dropdown ── */
.navbar-links .menu-item-has-children {
  position: relative;
}

.navbar-links .nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.navbar-links .menu-item-has-children:hover .nav-arrow,
.navbar-links .menu-item-has-children:focus-within .nav-arrow {
  transform: rotate(180deg);
}

/* Animated dropdown — visibility/opacity so transitions work */
.navbar-links .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  min-width: 210px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,212,255,0.06);
  z-index: 1100;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* Hidden state */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease,
              transform 0.22s ease,
              visibility 0s linear 0.22s;
}

/* Arrow tip */
.navbar-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.navbar-links .menu-item-has-children:hover .sub-menu,
.navbar-links .menu-item-has-children:focus-within .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.22s ease,
              transform 0.22s ease,
              visibility 0s linear 0s;
}

.navbar-links .sub-menu li { margin: 0; padding: 0; }
.navbar-links .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition),
              background var(--transition),
              padding-left var(--transition);
  border-left: 2px solid transparent;
}
.navbar-links .sub-menu li a:hover {
  color: var(--accent);
  background: var(--accent-dim);
  padding-left: 22px;
  border-left-color: var(--accent);
}

/* Sub-menu item icon */
.sub-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.navbar-links .sub-menu li a:hover .sub-icon {
  transform: scale(1.25);
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* Mobile wallet submenu */
.mobile-menu-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 0 2px;
  border-bottom: none !important;
}
.mobile-sub-link {
  font-size: 0.85rem !important;
  padding-left: 12px !important;
  color: var(--text-muted);
}

/* =============================================
   DISCLAIMER BAR
============================================= */
.disclaimer-bar {
  background: rgba(255, 184, 0, 0.06);
  border-bottom: 1px solid rgba(255, 184, 0, 0.18);
  padding: 9px 24px;
}
.disclaimer-bar p {
  font-size: 0.77rem;
  color: #a89060;
  line-height: 1.55;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.disclaimer-bar strong { color: var(--warning); }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text-primary);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 22px;
}

.hero-security-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 107, 107, 0.07);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-security-notice .icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.hero-security-notice p {
  font-size: 0.8rem;
  color: #cc8888;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   HERO SPLIT LAYOUT (text left + image grid right)
============================================= */
.hero-container {
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

/* Single hero image on right */
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 0 0 520px;
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-single-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(0, 212, 255, 0.08),
              0 0 60px rgba(0, 212, 255, 0.06);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.hero-single-img-wrap:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6),
              0 0 80px rgba(0, 212, 255, 0.12);
}

.hero-single-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-single-img-wrap:hover .hero-single-img {
  opacity: 1;
  transform: scale(1.03);
}

/* Dark gradient overlay — blends image into site bg */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 47, 0.35) 0%,
    rgba(10, 25, 47, 0.05) 60%,
    rgba(0, 212, 255, 0.06) 100%
  );
  pointer-events: none;
}

/* Badge overlaid on the bottom of the image */
.hero-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 25, 47, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 6px 14px 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-img-badge .eyebrow-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-visual    { flex: 0 0 320px; }
  .hero-single-img { height: 340px; }
}

@media (max-width: 768px) {
  .hero-container  { flex-direction: column; gap: 32px; }
  .hero-visual     { flex: none; width: 100%; }
  .hero-single-img { height: 240px; }
}

/* =============================================
   HOW IT WORKS
============================================= */
.how-it-works {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.how-header {
  text-align: center;
  margin-bottom: 52px;
}
.how-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.step-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* =============================================
   WALLET HUB
============================================= */
.wallet-hub { background: var(--bg-primary); }
.wallet-hub .section-header { margin-bottom: 40px; }

.wallet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.wallet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.wallet-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.wallet-card:hover .wallet-card-img { opacity: 0.9; }

.wallet-card-body { padding: 22px; }
.wallet-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.wallet-card-body ul {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.wallet-card-body ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.wallet-card-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.badge-specialist {
  display: inline-block;
  background: rgba(0, 255, 148, 0.08);
  border: 1px solid rgba(0, 255, 148, 0.25);
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* =============================================
   SUPPORT BY INTENT
============================================= */
.support-intent { background: var(--bg-secondary); }

.intent-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.intent-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.intent-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 14px 0 6px;
}

.problem-block {
  background: rgba(255, 107, 107, 0.05);
  border-left: 2px solid rgba(255, 107, 107, 0.35);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  margin: 12px 0;
}
.problem-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cc7777;
  margin-bottom: 4px;
}
.problem-block p {
  font-size: 0.8rem;
  color: #b08080;
  line-height: 1.55;
  font-style: italic;
}

.solution-block {
  background: rgba(0, 212, 255, 0.04);
  border-left: 2px solid var(--border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  margin: 12px 0;
}
.solution-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.solution-block p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.intent-warning {
  font-size: 0.72rem;
  color: #8a7040;
  margin-top: 10px;
  font-style: italic;
}

/* =============================================
   SAFETY BAND
============================================= */
.safety-band {
  background: linear-gradient(135deg, #0c1f3a 0%, #0A192F 100%);
  border-top: 1px solid rgba(0, 255, 148, 0.12);
  border-bottom: 1px solid rgba(0, 255, 148, 0.12);
  padding: 60px 0;
}

.safety-band-inner {
  text-align: center;
  margin-bottom: 40px;
}
.safety-band-inner h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.safety-band-inner p { font-size: 0.9rem; color: var(--text-muted); }

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

.safety-item {
  background: rgba(0, 255, 148, 0.04);
  border: 1px solid rgba(0, 255, 148, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
}
.safety-item .safety-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.safety-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.safety-item ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.safety-item ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.safety-item ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* =============================================
   FAQ
============================================= */
.faq-section { background: var(--bg-primary); }
.faq-header  { margin-bottom: 40px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question h2 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border-card);
}

.faq-direct-answer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-top: 16px;
}

.faq-extended {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   FINAL CTA BAND
============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cta-microcopy {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: #070f1e;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text-lg {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.footer-brand .logo-text-lg span { color: var(--accent); }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4,
.footer-legal h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* WordPress footer nav menu */
.footer-col ul,
.footer-col .menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li a,
.footer-col .menu li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover,
.footer-col .menu li a:hover { color: var(--accent); }

.footer-legal p {
  font-size: 0.76rem;
  color: #4a5568;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.75rem; color: #3a4a5e; }

.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  font-size: 0.75rem;
  color: #3a4a5e;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-muted); }

/* =============================================
   SECTION DIVIDER
============================================= */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px 0 0;
}

/* =============================================
   GENERIC PAGE / SINGLE POST
============================================= */
.site-main {
  min-height: 60vh;
  background: var(--bg-primary);
}

.entry-content {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 760px;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  color: var(--text-primary);
  margin: 1.5em 0 0.6em;
}
.entry-content p  { margin-bottom: 1.2em; }
.entry-content a  { color: var(--accent); }
.entry-content a:hover { color: var(--accent-hover); }
.entry-content ul, .entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .grid-4       { grid-template-columns: repeat(2, 1fr); }
  .grid-3       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
  .safety-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links  { display: none; }
  .navbar-cta .btn-primary { display: none; }
  .hamburger     { display: flex; }

  .hero          { min-height: 80vh; padding: 60px 0 40px; }

  .grid-4        { grid-template-columns: 1fr; }
  .grid-3        { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .safety-grid   { grid-template-columns: 1fr; }

  .hero-buttons  { flex-direction: column; }
  .btn-primary,
  .btn-secondary { width: 100%; text-align: center; }

  .cta-buttons   { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { min-width: 260px; text-align: center; }

  .section-pad    { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }

  .footer-bottom  { flex-direction: column; text-align: center; }
  .footer-links   { justify-content: center; }

  .faq-list { max-width: 100%; }
}

@media (max-width: 480px) {
  .trust-strip   { gap: 14px; }
  .hero h1       { font-size: 2rem; }
  .container     { padding: 0 16px; }
}

/* =============================================
   CALLBACK BUTTON (amber / call variant)
============================================= */
.btn-callback {
  background: transparent;
  color: var(--warning);
  border: 1px solid rgba(255, 184, 0, 0.4);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  margin-top: 10px;
  white-space: nowrap;
}
.btn-callback:hover {
  background: var(--warning-dim);
  border-color: var(--warning);
  color: var(--warning);
}

/* =============================================
   CARD DUAL-CTA ROW
============================================= */
.card-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* =============================================
   LARGE BUTTON VARIANT
============================================= */
.btn-lg {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* =============================================
   FAQ POST-SECTION AUDIT CTA
============================================= */
.faq-audit-cta {
  margin-top: 40px;
  text-align: center;
}

/* =============================================
   DEFI WALLET SECTION HEADER
============================================= */
.defi-wallet-section { }

.defi-section-header {
  margin-bottom: 4px;
}
.defi-section-header .section-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

/* =============================================
   STICKY EMERGENCY SUPPORT WIDGET
============================================= */
.sticky-emergency {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.sticky-emergency.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-emergency-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.sticky-emergency-btn:hover {
  border-color: var(--warning);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.18);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.sticky-emergency-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sticky-emergency-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sticky-emergency-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--warning);
}
.sticky-emergency-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sticky-emergency-arrow {
  font-size: 0.9rem;
  color: var(--warning);
  margin-left: 4px;
}

@media (max-width: 480px) {
  .sticky-emergency {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .sticky-emergency-btn {
    width: 100%;
    justify-content: center;
  }
}
