* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: hsl(142, 71%, 45%);
  --primary-hover: hsl(142, 71%, 35%);
  --primary-light: hsl(142, 71%, 95%);
  --secondary: hsl(217, 33%, 17%);
  --accent: hsl(48, 96%, 76%);
  --background: hsl(0, 0%, 96%);
  --card-bg: hsl(0, 0%, 100%);
  --text-primary: hsl(217, 33%, 17%);
  --text-secondary: hsl(215, 16%, 47%);
  --border: hsl(220, 13%, 91%);
  --gradient-primary: linear-gradient(135deg, hsl(142, 71%, 45%) 0%, hsl(142, 71%, 35%) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(30, 41, 59, 0.95) 100%);
  
  --header-footer-bg: #1e293b;
  --header-footer-text: #ffffff;
  --header-bg: rgba(255, 247, 0, 0.95);
  
  --shadow-soft: 0 2px 12px hsla(217, 33%, 17%, 0.06);
  --shadow-medium: 0 8px 24px hsla(217, 33%, 17%, 0.1);
  --shadow-large: 0 16px 48px hsla(217, 33%, 17%, 0.12);
  --shadow-glow: 0 0 40px hsla(142, 71%, 45%, 0.3);
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  background-image:
    radial-gradient(80% 50% at 50% -10%, rgba(170, 164, 164, 0.75), rgba(103, 62, 62, 0) 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'><g fill='none' stroke='%23666666' stroke-width='1.3' opacity='.13' stroke-linecap='round' stroke-linejoin='round'><path d='M18 22 h22 a4 4 0 0 1 4 4 v14 l-16 16 -18 -18 z'/><circle cx='36' cy='26' r='2.5'/><path d='M58 58 h26 l-3 12 H61 l-7 -26 H22'/><circle cx='62' cy='74' r='3'/><circle cx='77' cy='74' r='3'/></g></svg>");
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar {
  background-color: #fff700c5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.navbar-brand {
  color: black !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand img:first-child {
  height: 70px;
  margin-right: 5px;
  transition: var(--transition-smooth);
}

.navbar-brand img:last-child {
  height: 80px;
  transition: var(--transition-smooth);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: black !important;
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link b {
  color: #1e40af !important;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-image: url('../static/images/herotraders.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  animation: pattern-move 60s linear infinite;
}

@keyframes pattern-move {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 3;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: rgb(255, 255, 255);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: hero-title-in 1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: hero-subtitle-in 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
  line-height: 1.8;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
  }
}

@keyframes hero-subtitle-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

.animated-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  margin-top: 2rem;
  border: 3px solid;
  border-color: transparent;
  font-size: 18px;
  font-weight: 700;
  background-color: rgba(255, 247, 0, 0.95);
  border-radius: 50px;
  color: #212121;
  box-shadow: 0 8px 32px rgba(255, 247, 0, 0.4);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  animation: button-float 3s ease-in-out infinite;
}

@keyframes button-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #212121;
  z-index: 9;
  transition: var(--transition-smooth);
}

.animated-button .arr-1 {
  right: 18px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #212121;
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-smooth);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: var(--transition-smooth);
}

.animated-button:hover {
  box-shadow: 0 12px 48px rgba(255, 247, 0, 0.6);
  color: #ffffff;
  transform: translateY(-4px);
  animation: none;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 18px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #ffffff;
}

.animated-button:active {
  transform: scale(0.95) translateY(0);
}

.animated-button:hover .circle {
  width: 300px;
  height: 300px;
  opacity: 1;
}

.mission-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float-shape 20s ease-in-out infinite;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(50px, -50px) rotate(120deg); }
  66% { transform: translate(-50px, 50px) rotate(240deg); }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: title-underline 2s ease-in-out infinite;
}

@keyframes title-underline {
  0%, 100% { width: 60px; }
  50% { width: 100px; }
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.9;
  position: relative;
  padding-left: 1.5rem;
}

.mission-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 4px;
  height: calc(100% - 1.2rem);
  background: var(--gradient-primary);
  border-radius: 2px;
}

.mission-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
  transition: var(--transition-smooth);
}

.mission-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.mission-image:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large), var(--shadow-glow);
}

.mission-image:hover::before {
  opacity: 1;
}

.mission-image img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
  display: block;
}

.mission-image:hover img {
  transform: scale(1.08);
}

.values-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, rgba(194, 224, 251, 0.2) 0%, rgba(194, 224, 251, 0.4) 100%);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.values-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-card {
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  color: white;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =============== TRADERS SECTION - ENHANCED =============== */
.traders-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--background) 0%, rgba(255, 255, 255, 1) 100%);
}

.traders-header {
  margin-bottom: 4rem;
}

.traders-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

.traders-container {
  max-width: 1100px;
  margin: 0 auto;
}

.trader-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
  border: 2px solid var(--border);
  transition: var(--transition-smooth);
}

.trader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large), var(--shadow-glow);
  border-color: var(--primary);
}

.trader-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.trader-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.trader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.trader-card:hover .trader-image img {
  transform: scale(1.1) rotate(2deg);
}

.trader-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
}

.trader-info {
  margin-bottom: 2rem;
}

.trader-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.trader-type {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trader-description {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.trader-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trader-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.trader-nav-btn:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.trader-nav-btn:active {
  transform: scale(0.95);
}

.trader-dots {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
}

.trader-dot {
  height: 10px;
  border-radius: 5px;
  background-color: var(--border);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.trader-dot.active {
  width: 40px;
  background: var(--gradient-primary);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.trader-dot:not(.active) {
  width: 10px;
}

.trader-dot:hover:not(.active) {
  background-color: var(--primary);
  transform: scale(1.2);
}

.contact-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, rgba(194, 224, 251, 0.2) 0%, rgba(194, 224, 251, 0.4) 100%);
  position: relative;
}

.contact-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-large);
  border-color: var(--primary);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 2rem;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.contact-card:hover .contact-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  min-height: 50px;
  font-size: 1.05rem;
}

.contact-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.contact-link:hover {
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.contact-link:hover::after {
  width: 100%;
}

.site-footer {
  background: var(--header-footer-bg);
  color: var(--header-footer-text);
  padding: 60px 0 32px;
  margin-top: 80px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.footer-logo {
  max-width: 240px;
  height: auto;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.site-footer h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--header-footer-text);
  position: relative;
  display: inline-block;
}

.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.site-footer a:hover {
  color: var(--header-footer-text);
  transform: translateX(4px);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 12px;
}

/* Social Media Icons - Enhanced */
.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.example-2 .icon-content {
  position: relative;
}

.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.example-2 .icon-content a:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
}

.example-2 .icon-content a:hover {
  color: white;
}

.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: var(--transition-smooth);
}

.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f);
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

.animate-scale-in {
  animation: scale-in 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slide-in-left 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slide-in-right 0.8s ease-out;
}

/* Stagger animation delays */
.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (max-width: 1024px) {
  .mission-grid,
  .trader-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trader-image {
    height: 400px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .mission-section,
  .values-section,
  .traders-section,
  .contact-section {
    padding: 4rem 0;
  }
  
  .trader-content {
    padding: 2.5rem 2rem;
  }
  
  .trader-name {
    font-size: 1.6rem;
  }
  
  .animated-button {
    padding: 16px 32px;
    font-size: 16px;
  }
  
  .value-icon,
  .contact-icon {
    width: 64px;
    height: 64px;
  }
  
  .mission-content p {
    font-size: 1.05rem;
  }
  
  .trader-image {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .navbar-brand img:first-child {
    height: 50px;
  }
  
  .navbar-brand img:last-child {
    height: 60px;
  }
  
  .value-card,
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .trader-content {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 500px;
  }
}

@media (min-width: 1025px) {
  .hero-section {
    height: 600px;
  }
}

.text-center {
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--primary);
  color: white;
}

::-moz-selection {
  background-color: var(--primary);
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
  border: 3px solid var(--background);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}