:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary: #10b981;
  --accent: #8b5cf6;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --border-radius: 0.75rem;
  --border-radius-sm: 0.5rem;
  --shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1),
    0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1),
    0 0.25rem 0.375rem -0.125rem rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(0.625rem);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 2.5rem;
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.875rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -0.3125rem;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  align-items: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-login {
  color: var(--text-dark);
  margin-right: 0.9375rem;
  border: 1px solid var(--border);
}

.btn-login:hover {
  background-color: rgba(99, 102, 241, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  padding: 11.25rem 0 7.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.8) 0%,
    rgba(241, 245, 249, 0.8) 100%
  );
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  max-width: 37.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 1.875rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-badge i {
  margin-right: 0.5rem;
}

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

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.875rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
}

.ticker-cards {
  display: flex;
  gap: 0.9375rem;
  margin-top: 2.5rem;
}

.ticker-card {
  background-color: var(--card-bg);
  backdrop-filter: blur(0.625rem);
  border-radius: var(--border-radius-sm);
  padding: 0.9375rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  min-width: 11.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.ticker-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow-lg);
}

.ticker-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
  color: var(--primary);
  font-size: 1.125rem;
}

.ticker-info h4 {
  font-size: 1rem;
  margin-bottom: 0.3125rem;
}

.ticker-info p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.up {
  color: var(--secondary);
}

.down {
  color: #ef4444;
}

/* Partners Section */
.partners {
  padding: 6.25rem 0;
  background: var(--card-bg);
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.875rem;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary) 50%,
    transparent 100%
  );
}

.partner-logo {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 10rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.05),
    transparent
  );
  transition: var(--transition);
  z-index: 1;
}

.partner-item:hover .partner-logo::before {
  left: 100%;
}

.partner-item:hover .partner-logo {
  box-shadow: var(--shadow-lg);
}

.partner-item:hover .partner-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Features Section */
.features {
  padding: 7.5rem 0;
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.section-heading {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.875rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem 1.875rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
}

.feature-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5625rem;
  font-size: 1.75rem;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.feature-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.9375rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Markets Section */
.markets {
  padding: 7.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
}

.market-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem 1.875rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.market-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.market-icon {
  width: 3.125rem;
  height: 3.125rem;
  margin-right: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.market-info h3 {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.market-info p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Market Leadership Section */
.market-leadership {
  padding: 7.5rem 0;
  background: var(--light-bg);
}

.leadership-content {
  text-align: center;
  margin-bottom: 3rem;
}

.leadership-content h1 {
  font-size: 2.625rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.leadership-content .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.leadership-content .lead-text {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.market-widget {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.market-widget iframe {
  border-radius: var(--border-radius-sm);
}

.leadership-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 1rem;
}

.stat-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.stat-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trading Excellence Section */
.trading-excellence {
  padding: 7.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.excellence-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.excellence-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.excellence-text .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.excellence-text .subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.feature-list li i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.25rem;
}

.forex-widget {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 25rem;
}

.forex-widget iframe {
  border-radius: var(--border-radius-sm);
}

/* Steps Section */
.steps {
  padding: 7.5rem 0;
  background: var(--light-bg);
}

.steps-container {
  background: linear-gradient(135deg, var(--card-bg) 0%, #f8fafc 100%);
  border-radius: var(--border-radius);
  padding: 5rem 3.75rem;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 18.75rem;
  height: 18.75rem;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.05) 0%,
    transparent 70%
  );
}

.steps-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 2.5rem;
}

.steps-text {
  flex: 1;
  max-width: 31.25rem;
}

.steps-text h2 {
  font-size: 2.625rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.steps-list {
  margin-top: 2.5rem;
}

.step {
  display: flex;
  margin-bottom: 2.5rem;
}

.step-number {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}

.step-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-info p {
  color: var(--text-light);
  line-height: 1.6;
}

.steps-image {
  flex: 1;
  text-align: center;
}

.steps-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* Plans Section */
/* Investment Plans Section */
.plans {
  padding: 7.5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.plan-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3.125rem 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -0.9375rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-header {
  margin-bottom: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid var(--border);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  color: var(--text-dark);
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.plan-period {
  color: var(--text-light);
  font-size: 1rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.plan-features li {
  margin-bottom: 0.9375rem;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.plan-features li i {
  color: var(--secondary);
  margin-right: 0.75rem;
  font-size: 1.125rem;
}

.plan-button {
  width: 100%;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plans {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .plan-card {
    padding: 2.5rem 1.5rem;
  }
  
  .plan-price {
    font-size: 2.5rem;
  }
}

/* Contact Section */
.contact {
  padding: 7.5rem 0;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 3.75rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  text-align: center;
  padding: 1.875rem 1.25rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.contact-item:hover {
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow);
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.contact-item h4 {
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  word-wrap: break-word;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3.125rem 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--light-bg);
  color: var(--text-dark);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
  min-height: 9.375rem;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--card-bg);
  color: var(--text-dark);
  padding: 6.25rem 0 1.875rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 3.125rem;
  margin-bottom: 4.375rem;
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5625rem;
  position: relative;
  padding-bottom: 0.9375rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.3125rem;
}

.social-links {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.5625rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--text-dark);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  transform: translateY(-0.1875rem);
  color: white;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5625rem;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.copyright {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .hero-text {
    margin-bottom: 3.75rem;
  }

  .ticker-cards {
    justify-content: center;
  }

  .excellence-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-content {
    flex-direction: column;
    gap: 0;
  }

  .steps-text {
    margin-bottom: 3.75rem;
  }

  .plan-card.featured {
    transform: scale(1);
  }

  .plan-card.featured:hover {
    transform: translateY(-0.625rem);
  }
}

@media (max-width: 900px) {
  .nav-links,
  .auth-buttons {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-top: 1px solid var(--border);
  }

  .nav-container.active {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .nav-links li {
    margin: 0.75rem 0 !important;
  }

  .auth-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
  }

  .auth-buttons .btn {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .auth-buttons .btn-login {
    margin-right: 0;
  }

  .hero-title {
    font-size: 2.625rem;
  }

  .section-heading {
    font-size: 2.25rem;
  }

  .ticker-cards {
    flex-wrap: wrap;
  }

  .partners {
    padding: 3.75rem 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }

  .partner-logo {
    height: 8.75rem;
    padding: 1.25rem 0.9375rem;
  }

  .leadership-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-container {
    padding: 3.75rem 1.875rem;
  }

  .contact-grid {
    gap: 1.875rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 9.375rem 0 5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .logo {
    height: 2rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .features,
  .markets,
  .market-leadership,
  .trading-excellence,
  .steps,
  .plans,
  .contact {
    padding: 5rem 0;
  }

  .plan-price {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    height: 7.5rem;
    overflow: hidden;
  }

  .partner-logo img {
    transform: scale(2);
  }
}
