/* ============================================================
   DRCRYPTO.CA — DESIGN SYSTEM 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --red:       #D40000;
  --red-glow:  #FF1A1A;
  --red-dark:  #9C0000;
  --bg:        #080809;
  --surface:   #101013;
  --surface2:  #17171C;
  --surface3:  #1E1E25;
  --border:    rgba(255,255,255,0.07);
  --white:     #F2F2F5;
  --muted:     #7A7A8C;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:    12px;
  --glow:      0 0 40px rgba(212,0,0,0.25);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
.display-title {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); letter-spacing: -0.01em; }

.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

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

section { padding: 100px 0; }

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 9, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(242,242,245,0.75);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--red-glow) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,0,0,0.4) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8,8,9,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px;
  z-index: 899;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  color: rgba(242,242,245,0.8);
}

.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

.mobile-menu .nav-cta {
  background: var(--red) !important;
  color: white !important;
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,0,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(212,0,0,0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,0,0,0.12);
  border: 1px solid rgba(212,0,0,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-stats {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(242,242,245,0.7);
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats strong { color: var(--white); }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px rgba(212,0,0,0.3);
}

.btn-primary:hover {
  background: var(--red-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,0,0,0.45);
}

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

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,0,0,0.35);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,0,0,0.1);
  border: 1px solid rgba(212,0,0,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-badge-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.trust-badge-text span {
  color: var(--muted);
  font-size: 0.8rem;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  background: var(--bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text h2 {
  margin-bottom: 16px;
}

.why-us-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface2);
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), var(--glow);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  gap: 12px;
}

.video-placeholder svg { opacity: 0.4; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.stat-item {
  background: var(--surface2);
  padding: 24px 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.service-card {
  background: var(--surface2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--surface3); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,0,0,0.1);
  border: 1px solid rgba(212,0,0,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(212,0,0,0.18);
  border-color: rgba(212,0,0,0.4);
  box-shadow: 0 0 20px rgba(212,0,0,0.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

.service-link svg {
  transition: transform var(--transition);
}

.service-link:hover svg { transform: translateX(3px); }

/* ============================================================
   TESTIMONIALS MARQUEE
   ============================================================ */
.testimonials-section {
  background: var(--bg);
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  gap: 24px;
  margin-top: 48px;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}

.marquee-track:nth-child(2) {
  animation-direction: reverse;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212,0,0,0.3);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(242,242,245,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-handle {
  font-size: 0.775rem;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-logo span { color: var(--red); }

.footer-logo img { height: 36px; }

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(242,242,245,0.65);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-partners h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.partner-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(242,242,245,0.65);
  transition: color var(--transition);
  padding: 8px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.partner-link:hover {
  color: var(--white);
  border-color: rgba(212,0,0,0.3);
  background: rgba(212,0,0,0.06);
}

.partner-link span {
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: auto;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212,0,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 16px; }

.page-hero h2 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 24px auto 0;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section {
  padding: 80px 0;
}

.content-section.alt { background: var(--surface); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.content-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.service-list-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-list-item:hover {
  border-color: rgba(212,0,0,0.3);
  background: var(--surface3);
}

.service-list-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,0,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-list-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-list-item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(212,0,0,0.08) 100%);
  border: 1px solid rgba(212,0,0,0.2);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212,0,0,0.12), transparent 70%);
  pointer-events: none;
}

.cta-banner h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(242,242,245,0.7);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A7A8C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--surface2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,0,0,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit {
  margin-top: 8px;
}

.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.form-success {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.25);
  color: #00C864;
}

.form-error {
  background: rgba(212, 0, 0, 0.1);
  border: 1px solid rgba(212, 0, 0, 0.25);
  color: #FF6666;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--surface2); }

.faq-question.active { background: var(--surface2); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(212,0,0,0.1);
  border: 1px solid rgba(212,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 300;
}

.faq-question.active .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover { border-color: rgba(212,0,0,0.2); transform: translateY(-4px); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(212,0,0,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.pillar-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.pillar-card p { font-size: 0.875rem; color: var(--muted); }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.credential-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition);
}

.credential-badge:hover { border-color: rgba(212,0,0,0.3); }

.credential-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--surface3);
  object-fit: contain;
  padding: 8px;
  flex-shrink: 0;
}

.credential-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.credential-badge h4 { font-size: 0.9rem; font-weight: 700; }

.credential-badge p { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Red accent bar above section */
.red-bar {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition);
}

.contact-info-card:hover { border-color: rgba(212,0,0,0.25); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,0,0,0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-info-card a:hover { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 12px 20px; font-size: 0.875rem; }

  .trust-bar-inner { gap: 24px; }
  .trust-divider { display: none; }

  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: 1fr; gap: 2px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  .content-grid { grid-template-columns: 1fr; gap: 40px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-banner { padding: 40px 28px; }
  .cta-banner h3 { font-size: 1.5rem; }

  .about-pillars { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 28px 20px; }

  .page-hero { padding: 120px 0 56px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .testimonial-card { width: 280px; }
}

/* Trust bar badges strip */
.trust-bar img {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.trust-bar img:hover { transform: scale(1.02); }

/* Partner logo sizing in footer */
.partner-link img { flex-shrink: 0; }

/* ============================================================
   HERO 2 — Web3MediaHero-inspired layout
   ============================================================ */

.hero2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px; /* navbar height */
  background: linear-gradient(180deg, #080809 0%, #110608 55%, #190808 100%);
}

/* ── Red radial glow ── */
.hero2-glow {
  position: absolute;
  width: 1100px;
  height: 1100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,0,0,0.22) 0%, rgba(212,0,0,0) 68%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Particle canvas sits behind everything */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── Floating icons ── */
.hero2-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hicon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hiconFadeIn 0.7s ease forwards, hiconFloat 4s ease-in-out infinite;
}

.hicon span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
}

.hicon-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  /* Transparent ring — each SVG supplies its own brand background */
  background: transparent;
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.hicon-ring svg {
  border-radius: 50%;
  display: block;
}

.hicon:hover .hicon-ring {
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 2px rgba(255,255,255,0.2);
  transform: scale(1.06);
}

/* ── Positions — spread wide, AI moved to left-middle ── */
/* Left column */
.hicon-1 { left: 6%;  top: 16%; animation-delay: 0.3s,  0s;   --float-offset: -18px; } /* BTC   */
.hicon-2 { left: 10%; top: 55%; animation-delay: 0.45s, 0.6s; --float-offset: -14px; } /* ETH   */
.hicon-3 { left: 5%;  top: 38%; animation-delay: 0.6s,  1.1s; --float-offset: -16px; } /* AI    */
/* Right column */
.hicon-4 { right: 7%; top: 20%; animation-delay: 0.5s,  0.3s; --float-offset: -20px; } /* SOL   */
.hicon-5 { right: 9%; top: 60%; animation-delay: 0.7s,  0.9s; --float-offset: -12px; } /* AUDIT */

@keyframes hiconFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes hiconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(var(--float-offset, -16px)); }
}

/* ── Central content block ── */
.hero2-body {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  padding: 60px 24px 40px;
  gap: 0;
}

/* Eyebrow */
.hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,0,0,0.1);
  border: 1px solid rgba(212,0,0,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,0,0,0.9);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}

.hero2-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* Title */
.hero2-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #F2F2F5;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.22s ease forwards;
}

.hero2-title em {
  font-style: normal;
  /* Red gradient text like the template's highlighted text */
  background: linear-gradient(90deg, #D40000 0%, #FF4444 50%, #D40000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Subtitle */
.hero2-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(242,242,245,0.65);
  max-width: 520px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s 0.34s ease forwards;
}

/* Stats line */
.hero2-stats {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(242,242,245,0.55);
  margin-bottom: 36px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.7s 0.46s ease forwards;
}

.hero2-stats strong {
  color: rgba(242,242,245,0.9);
  font-weight: 600;
}

/* CTAs */
.hero2-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.58s ease forwards;
}

/* ── Partner scroller ── */
.hero2-partners {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 32px 0 40px;
  overflow: hidden;
}

.hero2-partners-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,242,245,0.35);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}

/* Fade-out gradient on left and right edges */
.hero2-fade-left,
.hero2-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 5;
  pointer-events: none;
}

.hero2-fade-left  { left: 0;  background: linear-gradient(to right,  #0c0607, transparent); }
.hero2-fade-right { right: 0; background: linear-gradient(to left, #0c0607, transparent); }

/* Track wrapper clips overflow */
.hero2-track-wrap {
  overflow: hidden;
  width: 100%;
}

.hero2-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-left: 56px;
  animation: partnerScroll 28s linear infinite;
  width: max-content;
}

.hero2-track:hover { animation-play-state: paused; }

@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual partner logo items */
.hero2-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 140px;
  height: 52px;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.hero2-partner-item:hover { opacity: 0.9; }

.hero2-partner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Light-bg partner logos (ChatGP.me has white background) */
.hero2-partner-light {
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hicon-3, .hicon-4, .hicon-5 { display: none; }
}

@media (max-width: 768px) {
  .hicon { display: none; }
  .hero2-body { padding: 32px 20px 24px; }
  .hero2-title { font-size: 2rem; }
  .hero2-ctas { gap: 10px; }
  .hero2-ctas .btn { padding: 12px 20px; font-size: 0.875rem; }
  .hero2-fade-left,
  .hero2-fade-right { width: 60px; }
}

/* ============================================================
   PARTNER SCROLLER — Uniform pill logos (11 items)
   ============================================================ */

/* Override old .hero2-partner-item with new .plogo system */
.plogo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  /* Fixed uniform container — every logo same size */
  width: 160px;
  height: 56px;
  border-radius: 12px;
  padding: 10px 16px;
  box-sizing: border-box;

  /* Subtle border so pills are visible on dark bg */
  border: 1px solid rgba(255,255,255,0.08);

  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.plogo:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.plogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Per-logo background treatments ── */

/* Dark-background logos (CryptoKeeper, CryptoAudit, CryptoAdvisor, GUAVY, Everdime) */
.plogo-dark {
  background: rgba(255,255,255,0.04);
}

/* White-background logos (ChatGP.me, GEODNET, BXNK, MeetAMI) */
.plogo-white {
  background: rgba(255,255,255,0.92);
}

/* Fiverr — green background */
.plogo-green {
  background: #1DBF73;
}

/* egemoney — blue background */
.plogo-blue {
  background: #1A5BE8;
}

/* Widen scroll animation for 11 logos — 11 × ~216px gap ≈ 2376px per set */
/* Override the previous timing */
.hero2-track {
  animation-duration: 42s;
  gap: 40px;
  padding-left: 40px;
}


/* ── Form button spin animation ── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
