.cr-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.cr-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 60px 5%;
}

.cr-hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cr-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 8px;
}

.cr-hero-cta {
  margin-top: 20px;
  font-size: 16px;
  padding: 16px 40px;
}

.cr-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--ocean);
  margin-bottom: 24px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.cr-benefits {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f9fc 0%, var(--white) 100%);
}

.cr-benefits-subtitle {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--ocean);
  max-width: 650px;
  margin: -10px auto 20px;
  line-height: 1.6;
}

.cr-benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cr-benefits-image-wrap {
  overflow: visible;
  position: relative;
}

.cr-benefits-img {
  width: 70%;
  max-width: 360px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.cr-benefits-text {
  display: flex;
  flex-direction: column;
}

.cr-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cr-benefit-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ocean);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cr-benefit-item:nth-child(1) { transition-delay: 0s; }
.cr-benefit-item:nth-child(2) { transition-delay: 0.1s; }
.cr-benefit-item:nth-child(3) { transition-delay: 0.2s; }
.cr-benefit-item:nth-child(4) { transition-delay: 0.3s; }
.cr-benefit-item:nth-child(5) { transition-delay: 0.4s; }
.cr-benefit-item:nth-child(6) { transition-delay: 0.5s; }

.cr-benefit-item.cr-item-visible {
  opacity: 1;
  transform: translateX(0);
}

.cr-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--seal-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.cr-benefits-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 16px;
  padding: 16px 40px;
  align-self: flex-start;
}

.cr-qualities {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.cr-qualities-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cr-qualities-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,64,0.8) 0%, rgba(46,111,149,0.75) 100%);
  z-index: 0;
}

.cr-qualities-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cr-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.cr-bounce-card {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

.cr-bounce-card.cr-bounced {
  animation: crCardBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.cr-bounce-card[data-bounce="1"].cr-bounced { animation-delay: 0s; }
.cr-bounce-card[data-bounce="2"].cr-bounced { animation-delay: 0.2s; }
.cr-bounce-card[data-bounce="3"].cr-bounced { animation-delay: 0.4s; }
.cr-bounce-card[data-bounce="4"].cr-bounced { animation-delay: 0.6s; }

@keyframes crCardBounce {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  80% {
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cr-quality-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.cr-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(143,211,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--aqua);
}

.cr-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cr-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.cr-apply-section {
  padding: 80px 24px;
  position: relative;
  overflow: visible;
  background: var(--white);
}

.cr-apply-slot {
  max-width: 100%;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  min-height: 400px;
  width: 100%;
  overflow: visible;
}

.cr-apply-slot [data-paperform-id] {
  min-height: 400px;
}

.cr-apply-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--seal-blue);
}

.cr-final-cta {
  background: linear-gradient(135deg, var(--ocean), var(--seal-blue));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cr-final-seal {
  position: absolute;
  bottom: 10px;
  right: 4%;
  width: 180px;
  z-index: 4;
  opacity: 0;
  transform: translateY(0);
  animation: sealEntrance 1s ease-out 0.5s forwards, sealFloat 3s ease-in-out 1.5s infinite;
  pointer-events: none;
}

.cr-final-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cr-final-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cr-final-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cr-final-btn {
  font-size: 16px;
  padding: 16px 40px;
}

.cr-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
  z-index: 999;
  text-align: center;
}

.cr-sticky-btn {
  width: 100%;
  max-width: 400px;
  text-align: center;
  font-size: 14px;
  padding: 14px 24px;
}

.cr-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cr-animate.cr-visible {
  opacity: 1;
  transform: translateY(0);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--bubble);
  opacity: 0.5;
  animation: floatBubble 6s ease-in-out infinite;
  z-index: 0;
}

.bubble-1 { width: 120px; height: 120px; top: -30px; left: 5%; animation-delay: 0s; }
.bubble-2 { width: 80px; height: 80px; bottom: 20px; right: 8%; animation-delay: 1.5s; }
.bubble-3 { width: 60px; height: 60px; top: 40%; left: 85%; animation-delay: 3s; }
.bubble-4 { width: 100px; height: 100px; bottom: -20px; left: 15%; animation-delay: 2s; }
.bubble-5 { width: 90px; height: 90px; top: -15px; right: 10%; animation-delay: 0.5s; }
.bubble-6 { width: 60px; height: 60px; bottom: 10px; left: 3%; animation-delay: 2.5s; }

@media (max-width: 768px) {
  .cr-hero {
    min-height: 60vh;
    padding-top: 70px;
  }

  .cr-hero-headline {
    font-size: 36px;
  }

  .cr-hero-sub {
    font-size: 16px;
  }

  .cr-hero-cta {
    padding: 14px 32px;
    font-size: 14px;
  }

  .cr-section-title {
    font-size: 28px;
  }

  .cr-benefits {
    padding: 60px 20px;
  }

  .cr-benefits-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cr-benefits-image-wrap {
    order: -1;
    text-align: center;
  }

  .cr-benefits-img {
    width: 60%;
    margin: 0 auto;
  }

  .cr-qualities {
    padding: 60px 20px;
  }

  .cr-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cr-apply-section {
    padding: 60px 4px;
  }

  .cr-apply-slot {
    padding: 0;
    min-height: 400px;
    border-radius: 0;
    width: 100%;
    overflow: visible;
  }

  .cr-final-cta {
    padding: 60px 20px;
  }

  .cr-final-seal {
    width: 110px;
    right: 3%;
    bottom: -12px;
  }

  .cr-final-headline {
    font-size: 28px;
  }

  .cr-sticky-bar {
    display: block;
  }

  .cr-final-cta {
    padding-bottom: 100px;
  }
}
