:root {
  --cr-bg: #ffffff;
  --cr-bg-alt: #f8faff;
  --cr-primary: #0088cc;
  --cr-secondary: #7000ff;
  --cr-text-main: #1e293b;
  --cr-text-muted: #64748b;
  --cr-border: #e2e8f0;
  --cr-card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  --cr-card-hover: 0 20px 50px -10px rgba(0, 136, 204, 0.15);
}

#cr-page {
  width: 100%;
  color: var(--cr-text-main);
  background: var(--cr-bg);
  overflow-x: hidden;
}

/* --- Utilities --- */
.cr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center-align {
  text-align: center;
}

/* --- Animations --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}

/* --- Section 1: Hero --- */
.cr-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Floating Shapes Background */
.cr-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
  animation: floatShape 10s infinite alternate;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 136, 204, 0.15);
  top: -100px;
  right: -100px;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(112, 0, 255, 0.1);
  bottom: -50px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 50px);
  }
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cr-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 20px 0;
}

.cr-tag {
  background: rgba(0, 136, 204, 0.1);
  color: var(--cr-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cr-lead {
  font-size: 1.1rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cr-stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  border-left: 3px solid var(--cr-primary);
  padding-left: 20px;
}

.cr-stat h3 {
  font-size: 2rem;
  margin: 0;
  color: var(--cr-text-main);
}
.cr-stat p {
  margin: 0;
  color: var(--cr-text-muted);
  font-size: 0.9rem;
}

/* Buttons */
.cr-btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.primary-btn {
  background: linear-gradient(90deg, var(--cr-primary), var(--cr-secondary));
  color: white;
  box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 136, 204, 0.4);
}

/* Hero Visual */
.cr-image-card {
  position: relative;
}
.cr-image-card img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--cr-card-shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}
.cr-hero-visual:hover .cr-image-card img {
  transform: perspective(1000px) rotateY(0deg);
}

.glass-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatCard 4s ease-in-out infinite;
}
.glass-card i {
  font-size: 24px;
  color: var(--cr-primary);
  background: rgba(0, 136, 204, 0.1);
  padding: 12px;
  border-radius: 10px;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Section 2: Voices (Testimonials) --- */
.cr-voices {
  padding: 100px 0;
  background: var(--cr-bg-alt);
}

.cr-section-header {
  margin-bottom: 60px;
}
.cr-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.cr-review-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--cr-card-shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cr-review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--cr-card-hover);
  border-color: rgba(0, 136, 204, 0.2);
}

.cr-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.cr-review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cr-primary);
}

.cr-review-header h4 {
  margin: 0;
  font-size: 1.1rem;
}
.stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-top: 5px;
}

/* --- Section 3: Open Roles --- */
.cr-jobs {
  padding: 60px 0;
  background: white;
}

.cr-job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--cr-border);
  border-radius: 16px;
  background: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cr-job-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--cr-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.cr-job-row:hover {
  box-shadow: var(--cr-card-hover);
  transform: scale(1.02);
}

.cr-job-row:hover::before {
  transform: scaleY(1);
}

.cr-job-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.cr-exp-badge {
  display: inline-block;
  background: var(--cr-bg-alt);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--cr-secondary);
  font-weight: 700;
  margin-bottom: 10px;
}

.cr-job-info p {
  margin: 0;
  color: var(--cr-text-muted);
  max-width: 600px;
}

.outline-btn {
  border: 2px solid var(--cr-primary);
  color: var(--cr-primary);
  background: transparent;
  text-decoration: none;
  padding: 12px 25px;
}

.outline-btn:hover {
  background: var(--cr-primary);
  color: white;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
  .cr-hero-visual {
    display: none;
  } /* Hide heavy image on mobile for speed */
  .cr-job-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cr-job-action {
    width: 100%;
  }
  .outline-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}
