:root {
  --primary-bg: #f8fafc;
  --secondary-bg: #f1f5f9;
  --card-bg: rgba(241, 245, 249, 0.95);
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-teal: #14b8a6;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --border-color: rgba(59, 130, 246, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  --gradient-secondary: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    linear-gradient(120deg, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    linear-gradient(240deg, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    linear-gradient(to bottom, 
      rgba(248, 250, 252, 0.9) 0%,
      rgba(241, 245, 249, 0.9) 100%
    );
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 0% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 100% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.SGCAPITAL-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(241, 245, 249, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.SGCAPITAL-company-logo {
  width: 320px;
  height: 60px;
  background-image: url('../img/company-logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
}

.SGCAPITAL-company-logo:hover {
  opacity: 0.9;
}

.SGCAPITAL-nav {
  display: flex;
  gap: 2.5rem;
}

.SGCAPITAL-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.SGCAPITAL-nav-link:hover,
.SGCAPITAL-active {
  color: var(--accent-blue);
}

.SGCAPITAL-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.SGCAPITAL-nav-link:hover::after,
.SGCAPITAL-active::after {
  width: 100%;
}

.SGCAPITAL-main {
  padding-top: 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.SGCAPITAL-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%, 
    rgba(20, 184, 166, 0.08) 50%,
    rgba(139, 92, 246, 0.08) 100%
  );
}

.SGCAPITAL-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.SGCAPITAL-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom,
      rgba(248, 250, 252, 0.4) 0%,
      rgba(241, 245, 249, 0.4) 100%
    );
  z-index: -1;
}

.SGCAPITAL-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.SGCAPITAL-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.SGCAPITAL-link-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.SGCAPITAL-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.SGCAPITAL-section {
  padding: 6rem 2rem;
  position: relative;
  background: linear-gradient(180deg, 
    rgba(241, 245, 249, 0) 0%, 
    rgba(59, 130, 246, 0.08) 50%,
    rgba(20, 184, 166, 0.08) 100%
  );
}

.SGCAPITAL-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
  z-index: -1;
}

.SGCAPITAL-content-block {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SGCAPITAL-content-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.SGCAPITAL-content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(59, 130, 246, 0.2) 50%, 
    transparent 100%
  );
}

.SGCAPITAL-content-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(20, 184, 166, 0.2) 50%, 
    transparent 100%
  );
}

.SGCAPITAL-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.SGCAPITAL-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.SGCAPITAL-feature {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(241, 245, 249, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.SGCAPITAL-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.SGCAPITAL-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.SGCAPITAL-feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.SGCAPITAL-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.SGCAPITAL-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.SGCAPITAL-news-card {
  background: rgba(241, 245, 249, 0.7);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.SGCAPITAL-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.SGCAPITAL-news-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.SGCAPITAL-news-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.SGCAPITAL-news-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.SGCAPITAL-news-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.SGCAPITAL-news-link:hover {
  color: var(--accent-purple);
}

.SGCAPITAL-footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem;
}

.SGCAPITAL-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.SGCAPITAL-footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.SGCAPITAL-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.SGCAPITAL-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.SGCAPITAL-footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.SGCAPITAL-footer-links a:hover {
  color: var(--accent-blue);
}

.SGCAPITAL-footer-copyright {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
  .SGCAPITAL-title {
    font-size: 3.5rem;
  }
  
  .SGCAPITAL-features,
  .SGCAPITAL-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .SGCAPITAL-header {
    padding: 1rem 2rem;
  }
  
  .SGCAPITAL-nav {
    gap: 1.5rem;
  }
  
  .SGCAPITAL-title {
    font-size: 2.5rem;
  }
  
  .SGCAPITAL-subtitle {
    font-size: 1.25rem;
  }
  
  .SGCAPITAL-company-logo {
    width: 240px;
    height: 45px;
  }
  
  .SGCAPITAL-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .SGCAPITAL-header {
    padding: 1rem;
  }
  
  .SGCAPITAL-nav {
    display: none;
  }
  
  .SGCAPITAL-title {
    font-size: 2rem;
  }
  
  .SGCAPITAL-features,
  .SGCAPITAL-news-grid {
    grid-template-columns: 1fr;
  }
  
  .SGCAPITAL-footer-info {
    grid-template-columns: 1fr;
  }
  
  .SGCAPITAL-company-logo {
    width: 180px;
    height: 34px;
  }
} 