@charset "UTF-8";

/* Process page: hero + step cards */
.process{
  background: linear-gradient(to top, #e6f0ff, #f9fcff);
  padding: 0 0 48px;
  overflow-x: hidden;
}

.process,
.process *,
.process *::before,
.process *::after{ box-sizing: border-box; }

/* Wrap */
.process-inner{
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0 10px;
}

/* Header */
.process-header{
  text-align: center;
  margin: 18px auto;
}

.process-title{
  margin: 18px auto 10px;
  max-width: 1100px;
  font-family: "Dancing Script";
  font-weight: 700;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.15;
  background: linear-gradient(to right, #004080, #6e67d9, #5cd0b5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-intro{
  margin: 0 auto 22px;
  max-width: 70ch;
  font-family: "Cabin";
  font-weight: 400;
  color: #000;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
}

/* Hero */
.process-hero{
  width: 95%;
  max-width: 1500px;
  margin: 80px auto 0;
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 240px;
  max-height: 720px;
  background: rgba(0, 0, 0, 0.05) url("../img/process_page/hero_image_1920px.jpg") no-repeat center / contain;
  border: 2px solid rgba(0, 64, 128, 0.22);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 64, 128, 0.18);
}

/* Hero bubble */
.process-hero-bubble{
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.process-hero-title{
  margin: 0;
  font-family: "Dancing Script";
  font-weight: 700;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1;
}

/* Grid + cards */
.process-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 10px;
}

.process-card{
  background: #fff;
  border-radius: 22px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(0, 64, 128, 0.16);
  box-shadow: 0 10px 28px rgba(0, 64, 128, 0.14);
}

.process-card-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.process-badge{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cabin";
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(to right, #004080, #6e67d9, #5cd0b5);
}

.process-card-title{
  margin: 0;
  font-family: "Dancing Script";
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  background: linear-gradient(to right, #002a55, #4d46b8, #1f8f7b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-card-text{
  margin: 0;
  font-family: "Cabin";
  color: #000;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.5;
}

/* Wide cards + CTA */
.process-card--wide{ grid-column: span 3; }

.process-cta{ text-align: center; }

.process-contact-link{
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: linear-gradient(to right, #004080, #6e67d9, #5cd0b5);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.4;
}

/* Reveal (only when JS is active) */
html.js .process-card{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .process-card.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Media queries */
@media (min-width: 1920px){
  .process-hero{
    max-width: 1500px;
    background-image: url("../img/process_page/hero_image_1920px.jpg");
    aspect-ratio: 16 / 7;
  }
  .process-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1920px){
  .process-hero{ background-image: url("../img/process_page/hero_image_1920px.jpg"); }
}

@media (max-width: 1200px){
  .process-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-card--wide{ grid-column: span 2; }
  .process-hero{
    aspect-ratio: 16 / 8;
    background-image: url("../img/process_page/hero_image_1200px.jpg");
  }
}

@media (max-width: 768px){
  .process-hero{
    aspect-ratio: 16 / 10;
    min-height: 260px;
    background-image: url("../img/process_page/hero_image_768px.jpg");
  }
  .process-grid{ grid-template-columns: 1fr; }
  .process-card--wide{ grid-column: span 1; }
  .process-title{ margin: 14px auto 10px; }
}

@media (max-width: 480px){
  .process-hero{
    aspect-ratio: 16 / 12;
    min-height: 240px;
    background-image: url("../img/process_page/hero_image_480px.jpg");
  }
  .process-hero-bubble{ padding: 6px 12px; }
  .process-card{ padding: 16px 14px 14px; }
}

@media (max-width: 300px){
  .process-hero{
    aspect-ratio: 16 / 13;
    min-height: 210px;
    background-image: url("../img/process_page/hero_image_300px.jpg");
  }
  .process-badge{
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 14px;
  }
}
