/* Import Variables */
@import url('variables.css');

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

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--gray-800);
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-800);
}

/* Navigation */
.navbar {
  padding: var(--spacing-md) 0;
  box-shadow: var(--shadow-sm);
  height: 74px;
  transition: var(--transition-normal);
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--gray-700);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* Buttons */
.btn {
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-md) var(--spacing-xl);
  transition: var(--transition-fast);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.btn-primary-green {
  background: var(--gradient-accent);
  color: var(--black);
  font-weight: var(--font-weight-bold);
}

.btn-primary-green:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-primary:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-5xl) 0 var(--spacing-4xl);
}

.hero-content {
  color: var(--white);
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-lg);
}

.hero-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 400px;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Metric Cards */
.metric-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  min-width: 200px;
  z-index: 2;
}

.metric-card.card-1 {
  top: 50px;
  right: 320px;
}

.metric-card.card-2 {
  top: 150px;
  left: 50px;
}

.metric-card.card-3 {
  top: 280px;
  right: 350px;
}

.metric-card.card-4 {
  bottom: 100px;
  left: 20px;
}

.metric-icon {
  width: 40px;
  height: 40px;
  background: var(--light-purple);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
}

.metric-content {
  flex: 1;
}

.metric-label {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  margin-bottom: var(--spacing-xs);
}

.metric-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.metric-sublabel {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

/* Hero Decorations */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-cube {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-md);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.decoration-cube.cube-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.decoration-cube.cube-2 {
  bottom: 30%;
  right: 15%;
  animation-delay: 2s;
}

.decoration-star {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-green);
  border-radius: var(--border-radius-full);
  opacity: 0.8;
  animation: twinkle 4s ease-in-out infinite;
}

.decoration-star.star-1 {
  top: 15%;
  right: 25%;
  animation-delay: 1s;
}

.decoration-star.star-2 {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.decoration-star.star-3 {
  top: 60%;
  left: 5%;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

/* Introduction Section */
.introduction-section {
  background: var(--gray-50);
}

.introduction-stats {
  margin-top: var(--spacing-2xl);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
}

/* Companies Section */
.companies-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.companies-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.company-logo {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-500);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.company-logo:hover {
  opacity: 1;
  color: var(--primary-purple);
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background: var(--light-purple);
  color: var(--primary-purple);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-2xl);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-lg);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

/* Features Section */
.features-section {
  background: var(--white);
}

.features-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--gray-700);
  margin-bottom: var(--spacing-2xl);
}

.features-buttons {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.features-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-chart {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
}

.chart-container {
  display: grid;
  gap: var(--spacing-lg);
}

.chart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background: var(--gray-50);
  border-radius: var(--border-radius-md);
}

.chart-label {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
}

.chart-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--gray-800);
}

.progress-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  background: conic-gradient(var(--primary-purple) 0deg 252deg, var(--gray-200) 252deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-fill {
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: var(--border-radius-full);
}

.chart-bars {
  display: flex;
  gap: var(--spacing-xs);
  align-items: end;
}

.bar {
  width: 8px;
  background: var(--primary-purple);
  border-radius: var(--border-radius-sm);
}

.bar-1 { height: 20px; }
.bar-2 { height: 35px; }
.bar-3 { height: 25px; }
.bar-4 { height: 40px; }
.bar-5 { height: 30px; }

/* Solution Section */
.solution-section {
  background: var(--gray-50);
}

.solution-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-cubes {
  position: relative;
  width: 200px;
  height: 200px;
}

.cube {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-lg);
  animation: float 8s ease-in-out infinite;
}

.cube-primary {
  background: var(--gradient-primary);
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.cube-secondary {
  background: var(--secondary-purple);
  top: 40px;
  right: 0;
  animation-delay: 2s;
}

.cube-accent {
  background: var(--gradient-accent);
  bottom: 0;
  left: 60px;
  animation-delay: 4s;
}

/* Technology Section */
.technology-section {
  background: var(--white);
}

.tech-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

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

.tech-icon {
  width: 60px;
  height: 60px;
  background: var(--light-purple);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}

.tech-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.tech-description {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  color: var(--white);
}

.cta-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--spacing-lg);
}

.cta-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-description {
  margin-top: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

.footer-title {
  color: var(--white);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

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

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

.footer-contact p {
  margin-bottom: var(--spacing-sm);
}

.footer-contact a {
  color: var(--primary-purple);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-divider {
  border-color: var(--gray-700);
  margin: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-copyright {
  color: var(--gray-500);
  font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .metric-card {
    position: relative;
    margin-bottom: var(--spacing-lg);
  }
  
  .metric-card.card-1,
  .metric-card.card-2,
  .metric-card.card-3,
  .metric-card.card-4 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  
  .hero-visual {
    margin-top: var(--spacing-2xl);
    height: auto;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-buttons,
  .features-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .companies-logos {
    justify-content: center;
  }
  
  .stat-item {
    margin-bottom: var(--spacing-lg);
  }
}

/* Pricing Styles */
.pricing-hero {
  background: var(--gray-50);
  padding-top: var(--spacing-5xl);
}

.pricing-plans {
  background: var(--white);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

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

.pricing-card.featured {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-2xl);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: var(--light-purple);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: var(--font-size-2xl);
  margin: 0 auto var(--spacing-lg);
}

.pricing-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.pricing-subtitle {
  color: var(--gray-600);
  font-size: var(--font-size-base);
}

.pricing-body {
  margin-bottom: var(--spacing-xl);
}

.pricing-description {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

.pricing-price {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.price-amount {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-purple);
}

.price-period {
  display: block;
  color: var(--gray-600);
  font-size: var(--font-size-base);
  margin-top: var(--spacing-sm);
}

.pricing-features h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-700);
}

.pricing-features .fas {
  color: var(--primary-purple);
  font-size: var(--font-size-sm);
}

.pricing-footer {
  margin-top: auto;
}

.pricing-features {
  background: var(--gray-50);
}

.feature-item {
  padding: var(--spacing-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-3xl);
  margin: 0 auto var(--spacing-lg);
}

.feature-item h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.feature-item p {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

.pricing-cta {
  background: var(--gradient-hero);
  color: var(--white);
}

/* About Page Styles */
.about-hero {
  background: var(--gray-50);
  padding-top: var(--spacing-5xl);
}

.about-visual img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.mission-section {
  background: var(--white);
}

.mission-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

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

.mission-icon {
  width: 60px;
  height: 60px;
  background: var(--light-purple);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: var(--font-size-2xl);
  margin: 0 auto var(--spacing-lg);
}

.mission-card h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.mission-card p {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

.technology-vision {
  background: var(--gray-50);
}

.vision-point {
  margin-bottom: var(--spacing-xl);
}

.vision-point h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.vision-point p {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

.technology-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 400px;
}

.tech-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tech-item i {
  font-size: var(--font-size-2xl);
  color: var(--primary-purple);
  margin-bottom: var(--spacing-sm);
}

.tech-item span {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-700);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.team-info h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.team-role {
  font-size: var(--font-size-lg);
  color: var(--primary-purple);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

.team-bio {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

.team-contact {
  text-align: left;
}

.team-contact p {
  margin-bottom: var(--spacing-sm);
  color: var(--gray-700);
}

.team-contact a {
  color: var(--primary-purple);
  text-decoration: none;
}

.team-contact a:hover {
  text-decoration: underline;
}

.values-section {
  background: var(--gray-50);
}

.value-item {
  padding: var(--spacing-xl);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-2xl);
  margin: 0 auto var(--spacing-lg);
}

.value-item h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.value-item p {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

/* Contact Page Styles */
.contact-hero {
  background: var(--gray-50);
  padding-top: var(--spacing-5xl);
}

.contact-form-section {
  background: var(--white);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-3xl);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.form-description {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.form-label {
  font-weight: var(--font-weight-semibold);
  color: var(--gray-700);
  margin-bottom: var(--spacing-sm);
}

.form-control,
.form-select {
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(95, 69, 255, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.form-check-label {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
}

.form-check-label a {
  color: var(--primary-purple);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.contact-info {
  background: var(--gray-50);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-2xl);
  margin: 0 auto var(--spacing-lg);
}

.contact-info-card h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.contact-info-card p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-sm);
}

.contact-info-card a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Legal Pages Styles */
.legal-hero {
  background: var(--gray-50);
  padding-top: var(--spacing-5xl);
}

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

.legal-document {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-3xl);
  box-shadow: var(--shadow-lg);
}

.legal-document h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-lg);
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: var(--spacing-sm);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-800);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.legal-document p {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

.legal-document ul {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

.legal-document li {
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

.legal-document a {
  color: var(--primary-purple);
  text-decoration: none;
}

.legal-document a:hover {
  text-decoration: underline;
}
