/* Base styles - Cartoon Blue Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
  background-attachment: fixed;
}

.credimetric-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - Cartoon Style */
.credimetric-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(116, 185, 255, 0.3);
  border-bottom: 4px solid #74b9ff;
}

.credimetric-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.credimetric-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.credimetric-logo-icon {
  font-size: 2rem;

  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #74b9ff;
  text-shadow: 0 2px 4px rgba(116, 185, 255, 0.3);
  img {
    width: 3rem;
    height: 3rem;
  }
}

.credimetric-logo-text {
  display: flex;
  flex-direction: column;
}

.credimetric-logo-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: #2c3e50;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(116, 185, 255, 0.2);
}

.credimetric-logo-tagline {
  font-size: 0.8rem;
  color: #74b9ff;
  font-weight: 600;
  line-height: 1;
}

.credimetric-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.credimetric-nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.credimetric-nav-link:hover,
.credimetric-nav-link.active {
  color: white;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(116, 185, 255, 0.4);
}

.credimetric-mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 10px;
  background: #74b9ff;
}

.credimetric-mobile-toggle span {
  width: 30px;
  height: 4px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Icon Styles */
.credimetric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
  transition: all 0.3s ease;
}

.credimetric-icon-large {
  width: 120px;
  height: 120px;
  font-size: 4rem;
}

.credimetric-icon-small {
  width: 60px;
  height: 60px;
  font-size: 2rem;
}

.credimetric-icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(116, 185, 255, 0.6);
}

/* Cartoon Button Styles */
.credimetric-btn-primary {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.credimetric-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.credimetric-btn-primary:hover::before {
  left: 100%;
}

.credimetric-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(116, 185, 255, 0.6);
}

.credimetric-btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.credimetric-btn-secondary:hover {
  background: white;
  color: #74b9ff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.credimetric-btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
}

/* Common Section Styles - Cartoon */
.credimetric-section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 3rem;
  color: #2c3e50;
  text-shadow: 0 4px 8px rgba(116, 185, 255, 0.3);
  position: relative;
}

.credimetric-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  border-radius: 3px;
}

.credimetric-page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.credimetric-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.credimetric-page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.credimetric-page-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Footer Styles - Cartoon */
.credimetric-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.credimetric-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.credimetric-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.credimetric-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credimetric-footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.credimetric-footer-logo-icon {
  font-size: 2rem;
  color: #74b9ff;
}

.credimetric-footer-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.credimetric-footer-description {
  color: #bdc3c7;
  line-height: 1.8;
  font-size: 1.1rem;
}

.credimetric-footer-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #74b9ff;
}

.credimetric-footer-text {
  color: #bdc3c7;
  line-height: 1.8;
  font-size: 1.1rem;
}

.credimetric-footer-bottom {
  border-top: 2px solid #34495e;
  padding-top: 2rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 1.1rem;
}

/* Cartoon Card Styles */
.credimetric-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(116, 185, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.credimetric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.credimetric-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(116, 185, 255, 0.3);
}

/* Mobile Responsive Base */
@media (max-width: 768px) {
  .credimetric-nav-menu {
    display: none;
  }

  .credimetric-mobile-toggle {
    display: flex;
  }

  .credimetric-logo-section {
    gap: 0.5rem;
  }

  .credimetric-logo-name {
    font-size: 1.4rem;
  }

  .credimetric-logo-tagline {
    font-size: 0.7rem;
  }

  .credimetric-page-title {
    font-size: 2.8rem;
  }

  .credimetric-section-title {
    font-size: 2.2rem;
  }

  .credimetric-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .credimetric-nav {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .credimetric-page-title {
    font-size: 2.2rem;
  }

  .credimetric-section-title {
    font-size: 1.8rem;
  }

  .credimetric-btn-primary,
  .credimetric-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .credimetric-logo-name {
    font-size: 1.2rem;
  }

  .credimetric-logo-tagline {
    display: none;
  }
}
