/**
 * Fast Designing Page - Deferred CSS
 * Below-fold styles: What We Do, About Us, Our Process
 */

/* ========================================
   WHAT WE DO
   ======================================== */
.what-we-do {
  padding: 80px 0 100px;
  background: #fff;
  position: relative;
  overflow: visible;
}
.wwd-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 42px;
  color: var(--color-text);
  margin-bottom: 20px;
}
.wwd-label .wwd-line {
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wwd-label > span:last-child {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
.wwd-label.animated .wwd-line {
  width: 80px;
}
.wwd-label.animated > span:last-child {
  clip-path: inset(0 0 0 0);
}
.wwd-slider {
  display: grid;
  position: relative;
  padding-right: 60px;
}
.wwd-slide {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.wwd-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.wwd-big-word {
  font-family: "Inter", sans-serif;
  font-size: clamp(100px, 16vw, 240px);
  font-weight: 700;
  color: #ebebeb;
  line-height: 0.9;
  text-align: center;
  margin: 0 0 -20px;
}
@keyframes wwdWordIn {
  from {
    filter: blur(16px);
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes wwdImgIn {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes wwdFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wwd-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 45px;
  max-width: 1000px;
  margin-inline: auto;
}
.wwd-media {
  position: relative;
  overflow: hidden;
  border-radius: 100px;
}
.wwd-media img {
  width: 100%;
  display: block;
}
.wwd-info {
  padding-top: 10px;
  max-width: 460px;
}
.wwd-desc {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 31px;
  color: var(--color-text);
  margin: 0 0 36px;
}
.wwd-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #206dd1;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s;
}
.wwd-cta:hover {
  background: #1a5bb3;
  color: #fff;
}
.wwd-cta .arrow {
  font-size: 18px;
  transition: transform 0.3s;
}
.wwd-cta:hover .arrow {
  transform: translateX(3px);
}
.wwd-sidebar {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.wwd-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wwd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}
.wwd-dot.active {
  width: 11px;
  height: 11px;
  background: #1b1b1b;
}
.wwd-bar {
  display: block;
  width: 1px;
  height: 100px;
  background: #1d1d1f;
  margin-top: 45px;
}
.wwd-scroll-text {
  writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-text);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .what-we-do {
    padding: 60px 0 80px;
  }
  .wwd-big-word {
    font-size: clamp(80px, 12vw, 160px);
  }
  .wwd-bottom {
    gap: 36px;
  }
  .wwd-desc {
    font-size: 18px;
    line-height: 28px;
  }
  .wwd-bar {
    height: 60px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .what-we-do {
    padding: 50px 0 60px;
  }
  .wwd-slider {
    padding-right: 0;
  }
  .wwd-big-word {
    font-size: clamp(60px, 18vw, 100px);
    margin-bottom: 10px;
  }
  .wwd-slide.active .wwd-big-word {
    animation: wwdWordIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .wwd-slide.active .wwd-media img {
    animation: wwdImgIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .wwd-slide.active .wwd-desc {
    animation: wwdFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  }
  .wwd-slide.active .wwd-cta {
    animation: wwdFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
  }
  .wwd-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wwd-media {
    border-radius: 40px;
  }
  .wwd-slide {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }
  .wwd-slide.active {
    display: block;
  }
  .wwd-sidebar {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
  }
  .wwd-dots {
    flex-direction: row;
  }
  .wwd-bar {
    display: none;
  }
  .wwd-scroll-text {
    display: none;
  }
  .wwd-desc {
    font-size: 15px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .what-we-do {
    padding: 40px 0 50px;
  }
  .wwd-label {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .wwd-big-word {
    font-size: clamp(48px, 15vw, 70px);
  }
  .wwd-media {
    border-radius: 24px;
  }
  .wwd-desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .wwd-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ========================================
   ABOUT US
   ======================================== */
.about-us {
  padding: 80px 0;
  background: #fff;
}
.about-heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 24px;
}
.about-desc {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 31px;
  color: var(--color-text);
  text-align: center;
  max-width: 915px;
  margin: 0 auto 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.ab-card {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.ab-icon {
  line-height: 1;
  margin-bottom: 15px;
}
.ab-val {
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.1;
  margin-top: auto;
}
.ab-lbl {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 8px;
}
.ab-feat {
  background: linear-gradient(135deg, #1e56a0 0%, #2e6fcf 40%, #5ba3f5 100%);
  border-radius: 999px;
  padding: 8px 12px 8px 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  min-height: 250px;
}
.ab-feat-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ab-feat-text .ab-lbl {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}
.ab-feat-text .ab-val {
  font-size: clamp(52px, 6vw, 80px);
  color: #fff;
  margin: 0;
}

.ab-feat-img {
  width: 229px;
  height: 229px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-250px);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}
.ab-feat.animated .ab-feat-img {
  transform: translateX(0);
  opacity: 1;
}
.ab-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-stars {
  display: inline-flex;
  gap: 2px;
  margin-left: 3px;
  font-size: 16px;
  color: var(--color-primary);
  vertical-align: middle;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ab-feat {
    /* grid-column: span 2; */
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 50px 0;
  }
  .about-heading {
    font-size: clamp(28px, 7vw, 42px);
  }
  .about-desc {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ab-feat {
    /* grid-column: span 1; */
    border-radius: 999px;
    padding: 6px 6px 6px 28px;
    min-height: unset;
  }
  .ab-feat-text .ab-val {
    font-size: clamp(36px, 10vw, 52px);
  }
  .ab-feat-img {
    width: 120px;
    height: 120px;
    transform: translateX(0);
    opacity: 1;
  }
  .ab-card {
    min-height: 160px;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .about-us {
    padding: 40px 0;
  }
  .about-heading {
    font-size: clamp(24px, 7vw, 32px);
  }
  .about-desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 28px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ab-feat {
    flex-direction: row;
    gap: 16px;
  }
  .ab-feat-img {
    width: 100px;
    height: 100px;
    margin-left: auto;
  }
  .ab-feat-text .ab-val {
    font-size: clamp(32px, 10vw, 44px);
  }
  .ab-feat-text .ab-lbl {
    font-size: 16px;
  }
  .ab-card {
    min-height: auto;
    padding: 18px;
  }
  .ab-val {
    font-size: clamp(28px, 8vw, 40px);
  }
  .ab-lbl {
    font-size: 15px;
  }
  .ab-icon img {
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   OUR PROCESS
   ======================================== */
.our-process {
  background: #fff;
  /* border-top: 1px solid #f0f0f0; */
  position: relative;
  z-index: 1;
}
.op-scroll-area {
  position: relative;
}
.op-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.op-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 42px;
  color: var(--color-text);
  margin-bottom: 40px;
}
.op-label .op-line {
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.op-label > span:last-child {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
.op-label.animated .op-line {
  width: 80px;
}
.op-label.animated > span:last-child {
  clip-path: inset(0 0 0 0);
}
.op-tabs {
  display: inline-flex;
  background: #f0f0f0;
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 48px;
  position: absolute;
}
.op-tab {
  padding: 10px 65px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s;
}
.op-tab.active {
  background: #206dd1;
  color: #fff;
}
.op-left {
  padding-top: 120px;
}
.op-panel {
  display: none;
}
.op-panel.active {
  display: block;
}
.op-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: start; */
}
.op-heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.25;
  margin: 0 0 24px;
  max-width: 620px;
}
.op-desc {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
  max-width: 530px;
}
.op-steps {
  position: relative;
  height: 100%;
  overflow: visible;
}
.op-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #f1f1f1;
  border-radius: 20px;
  padding: 60px 50px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(100px);
  will-change: transform, opacity;
  transform-origin: top center;
}
.op-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.op-step.is-stacked {
  opacity: 1;
}
.op-step.is-below {
  opacity: 1;
}
.op-step-num {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 500;
  color: #c0c0c0;
  line-height: 1;
  margin-bottom: 16px;
}
.op-step-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
  letter-spacing: 0.02rem;
}
.op-step-desc {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 31px;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 1024px) {
  .op-scroll-area {
    height: auto !important;
  }
  .op-sticky {
    position: relative;
    height: auto;
    padding: 60px 0;
  }
  .op-tabs {
    position: static;
  }
  .op-left {
    padding-top: 0;
  }
  .op-tab {
    padding: 8px 36px;
    font-size: 16px;
  }
  .op-steps {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .op-step {
    position: relative;
    top: auto;
    left: auto;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
    padding: 36px;
    min-height: auto;
    flex-direction: column;
    gap: 0;
  }
  .op-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .op-step-title {
    font-size: 24px;
  }
  .op-step-desc {
    font-size: 17px;
    line-height: 28px;
  }
  .op-step-num {
    font-size: 48px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .op-sticky {
    padding: 50px 0;
  }
  .op-tabs {
    margin-bottom: 32px;
  }
  .op-tab {
    padding: 8px 24px;
    font-size: 14px;
  }
  .op-heading {
    font-size: clamp(24px, 6vw, 32px);
  }
  .op-desc {
    font-size: 15px;
    line-height: 26px;
  }
  .op-step {
    padding: 24px;
    gap: 0;
    border-radius: 16px;
  }
  .op-step-num {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .op-step-title {
    font-size: 18px;
  }
  .op-step-desc {
    font-size: 15px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .op-sticky {
    padding: 40px 0;
  }
  .op-label {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .op-tabs {
    position: relative;
    margin: 0 auto;
    display: block;
    width: fit-content;
    margin-bottom: 24px;
  }
  .op-tab {
    padding: 10px 35px;
    font-size: 20px;
  }
  .op-heading {
    font-size: clamp(22px, 6vw, 28px);
  }
  .op-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .op-steps {
    gap: 12px;
  }
  .op-step {
    padding: 20px;
    gap: 0;
    border-radius: 14px;
  }
  .op-step-num {
    font-size: 34px;
    margin-bottom: 8px;
  }
  .op-step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .op-step-desc {
    font-size: 13px;
    line-height: 22px;
  }
}

/* ========================================
   KICKOFF SECTION
   ======================================== */
.kickoff {
  padding: 100px 0;
  background: #fff;
}

.kickoff__inner {
  max-width: 980px;
  margin-inline: auto;
}

.kickoff__heading {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: 0.02rem;
}

.kickoff__subtitle {
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Steps timeline */
.kickoff__steps {
  position: relative;
}

/* Vertical dashed line */
.kickoff__steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 48px;
  border-left: 2px dashed #c0cfe0;
}

.kickoff__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
}

.kickoff__step:not(:last-child) {
  padding-bottom: 48px;
}

/* Icon markers */
.kickoff__step-marker {
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.kickoff__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Step text */
.kickoff__step-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.7;
}

.kickoff__step-desc {
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.7;
}

/* CTA step */
.kickoff__step--cta {
  align-items: center;
}

.kickoff__cta-curve {
  display: block;
  width: 36px;
  height: 36px;
  border-left: 2px dashed #c0cfe0;
  border-bottom: 2px dashed #c0cfe0;
  border-radius: 0 0 0 18px;
  position: relative;
  z-index: 1;
  transform: translateX(46%) translateY(-6px);
}

.kickoff__step--cta .kickoff__step-body {
  padding-top: 14px;
}

/* Responsive - Kickoff */
@media (max-width: 1024px) {
  .kickoff {
    padding: 80px 0;
  }
  .kickoff__heading {
    font-size: clamp(32px, 5vw, 44px);
  }
  .kickoff__subtitle {
    margin-bottom: 44px;
  }
  .kickoff__step:not(:last-child) {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .kickoff {
    padding: 60px 0;
  }
  .kickoff__heading {
    font-size: clamp(28px, 6vw, 36px);
  }
  .kickoff__subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .kickoff__step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
  .kickoff__step:not(:last-child) {
    padding-bottom: 36px;
  }
  .kickoff__steps::before {
    left: 23px;
    top: 48px;
    bottom: 40px;
  }
  .kickoff__icon {
    width: 48px;
    height: 48px;
  }
  .kickoff__icon svg {
    width: 20px;
    height: 20px;
  }
  .kickoff__step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .kickoff__step-desc {
    font-size: 15px;
  }
  .kickoff__cta-curve {
    width: 28px;
    height: 28px;
    transform: translateX(46%) translateY(-6px);
  }
}

@media (max-width: 480px) {
  .kickoff {
    padding: 48px 0;
  }
  .kickoff__heading {
    font-size: clamp(24px, 7vw, 30px);
  }
  .kickoff__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .kickoff__step {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .kickoff__step:not(:last-child) {
    padding-bottom: 28px;
  }
  .kickoff__steps::before {
    left: 20px;
    top: 42px;
    bottom: 36px;
  }
  .kickoff__icon {
    width: 42px;
    height: 42px;
  }
  .kickoff__icon svg {
    width: 18px;
    height: 18px;
  }
  .kickoff__step-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .kickoff__step-desc {
    font-size: 14px;
    line-height: 1.6;
  }
  .kickoff__cta-curve {
    width: 22px;
    height: 22px;
    border-radius: 0 0 0 12px;
    transform: translateX(46%) translateY(-6px);
  }
  .kickoff__step--cta .kickoff__step-body {
    padding-top: 10px;
  }
}
