:root {
  --primary: #032B44;
  --primary-dark: #02193b;
  --primary-light: #044166;
  --accent: #4F8EF7;
  --accent-hover: #3F7AEA;
  --gold: #FFD700;
  --success: #2ECC71;
  --text-primary: #FFFFFF;
  --text-secondary: #B1B1B1;
  --text-muted: #666666;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #00b8e0 100%);
  --gradient-gold: linear-gradient(135deg, #f7931a 0%, #ffa726 100%);
  --shadow-lg: 0 28px 51px -13px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 39px rgba(0, 212, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 9px;
  --radius-lg: 17px;
  --radius-xl: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary);
}

.logo-img {
  max-width: 51px;
  height: auto;
}

img:not(.logo-img):not(.logo) {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}

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

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--primary);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-outline-light:hover {
  background: var(--text-primary);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.header-main {
  position: relative;
  z-index: 1000;
}

.navbar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(21px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
  color: var(--text-primary) !important;
}

.navbar-brand .site-name {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary) !important;
}

.dropdown-menu {
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 79px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  z-index: -1;
}

.blockchain-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 49px;
  pointer-events: none;
}

.floating-nodes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 19px var(--accent);
  animation: float 6s ease-in-out infinite;
}

.node-1 { top: 20%; left: 10%; animation-delay: 0s; }
.node-2 { top: 60%; left: 85%; animation-delay: 1s; }
.node-3 { top: 80%; left: 20%; animation-delay: 2s; }
.node-4 { top: 40%; left: 70%; animation-delay: 3s; }
.node-5 { top: 10%; left: 60%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-17px) scale(1.2); opacity: 1; }
}

.hero-content {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 53px;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-minimums {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.minimum-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  min-width: 160px;
}

.minimum-icon {
  width: 40px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 1.25rem;
}

.minimum-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.minimum-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--success);
}

.rfq-interface {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(19px);
}

.rfq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rfq-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.rfq-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-size: 0.875rem;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

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

.rfq-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rfq-pair label,
.rfq-amount label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pair-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--primary-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.pair-active {
  font-weight: 600;
}

.rfq-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.side-card {
  padding: 1rem;
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
  text-align: center;
}

.side-card.buy {
  border: 1px solid var(--success);
}

.side-card.sell {
  border: 1px solid #ef4444;
}

.side-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.side-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.side-card.buy .side-price { color: var(--success); }
.side-card.sell .side-price { color: #ef4444; }

.amount-input {
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.amount-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
}

.amount-input input::placeholder {
  color: var(--text-muted);
}

.currency-tag {
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-weight: 600;
}

.rfq-spread {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
}

.spread-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.spread-value {
  color: var(--success);
  font-weight: 600;
}

.rfq-footer {
  margin-top: 1rem;
  text-align: center;
}

.settlement-info {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.settlement-info i {
  color: var(--accent);
  margin-right: 0.5rem;
}

section {
  padding: 97px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 49px;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-section {
  background: var(--primary-dark);
}

.feature-card {
  height: 100%;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  width: 57px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.icon-glow {
  position: absolute;
  inset: -7px;
  background: var(--accent);
  filter: blur(22px);
  opacity: 0.3;
  border-radius: 50%;
  pointer-events: none;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.feature-list i {
  color: var(--success);
  font-size: 0.75rem;
}

.services-section {
  background: var(--primary);
}

.service-card {
  height: 100%;
  padding: 2rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 60px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  flex-grow: 1;
}

.service-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  color: var(--primary);
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--accent-hover);
}

.testimonials-section {
  background: var(--primary-dark);
}

.testimonial-card {
  height: 100%;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.client-avatar {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.client-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-content {
  flex-grow: 1;
  position: relative;
  padding-left: 1.5rem;
}

.quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  opacity: 0.5;
  font-size: 1rem;
}

.testimonial-quote {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.trade-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.trade-value {
  font-weight: 600;
  color: var(--gold);
}

.rating {
  color: var(--gold);
  font-size: 0.875rem;
}

.team-section {
  background: var(--primary);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 0.75rem;
  pointer-events: auto;
}

.team-social a {
  width: 42px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.team-credentials {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.credential {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.credential i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.stats-section {
  background: var(--primary);
  padding: 57px 0;
}

.stats-wrapper {
  padding: 3rem;
  background: var(--gradient-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.stats-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 31px 28px;
  pointer-events: none;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.stat-icon {
  width: 48px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.25rem;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.faq-section {
  background: var(--primary-dark);
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--bg-card-hover);
  color: var(--accent);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-section {
  background: var(--primary);
  padding: 81px 0;
}

.cta-wrapper {
  position: relative;
  padding: 4rem;
  background: var(--gradient-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(247, 147, 26, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cta-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.cta-feature i {
  color: var(--success);
}

.cta-action {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.cta-min-order {
  margin-bottom: 1.5rem;
}

.min-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.min-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

.footer-main {
  background: var(--primary-dark);
  padding-top: 78px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  padding-bottom: 3rem;
}

.footer-brand .site-name {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 51px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.badge-item i {
  color: var(--success);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 39px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.supported-coins {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.coin-label {
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.coin-icon {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: var(--bg-card);
  border-radius: 4px;
}

.page-hero {
  padding: 160px 0 83px;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 41px 39px;
  pointer-events: none;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  font-size: 0.875rem;
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

.about-content,
.legal-content {
  padding: 83px 0;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.content-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-primary);
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;
  height: auto;
}

.blog-section {
  padding: 78px 0;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-title a {
  color: var(--text-primary);
}

.article-title a:hover {
  color: var(--accent);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.article-link:hover {
  gap: 0.75rem;
}

.article-full {
  padding: 77px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header .article-category {
  position: static;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.article-header .article-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.article-header .article-meta {
  justify-content: center;
}

.article-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.article-featured-image img {
  width: 100%;
  height: auto;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body blockquote {
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.article-body blockquote p {
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.125rem;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.related-articles h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-section {
  padding: 83px 0;
}

.contact-info-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 47px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.contact-form-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--primary-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a0aec0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 15px;
  padding-right: 3rem;
}

.legal-content {
  background: var(--primary);
}

.legal-content .content-section {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

@media (max-width: 991.97px) {
  h1, .hero-title { font-size: 2.25rem; }
  h2, .section-title { font-size: 1.75rem; }

  .hero-minimums {
    flex-direction: column;
  }

  .minimum-card {
    min-width: auto;
  }

  .rfq-interface {
    margin-top: 3rem;
  }

  .cta-wrapper {
    padding: 2rem;
  }

  .cta-action {
    margin-top: 2rem;
  }
}

@media (max-width: 767.97px) {
  section {
    padding: 61px 0;
  }

  .hero-section {
    padding-top: 97px;
  }

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

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-wrapper {
    padding: 2rem 1rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

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

  .article-header .article-title {
    font-size: 1.75rem;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .supported-coins {
    justify-content: center;
    margin-top: 1rem;
  }
}
