/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 01 2026 | 06:41:06 */
/* Custom Guitar Atelier — How It Works */
.cga-how-it-works,
.cga-how-it-works * {
  box-sizing: border-box;
}

.cga-how-it-works {
  position: relative;
  overflow: hidden;
  margin: 48px 0;
  padding: 52px 34px 38px;
  background: linear-gradient(145deg, #ffffff 0%, #faf6ef 100%);
  border: 1px solid #e7dac5;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(48, 35, 30, 0.07);
}

/* Subtle decorative glow */
.cga-how-it-works::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(191, 143, 61, 0.15) 0%,
    rgba(191, 143, 61, 0) 70%
  );
  pointer-events: none;
}

.cga-hiw-header {
  position: relative;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.cga-hiw-kicker {
  display: block;
  margin-bottom: 9px;
  color: #996a24;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cga-hiw-header h2 {
  margin: 0;
  color: #30231e;
  font-family: inherit;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: none;
}

.cga-hiw-divider {
  display: block;
  width: 54px;
  height: 2px;
  margin: 17px auto;
  background: #b88735;
}

.cga-hiw-header p {
  margin: 0;
  color: #70675f;
  font-size: 16px;
  line-height: 1.65;
}

/* Process cards */
.cga-hiw-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cga-hiw-step {
  position: relative;
  min-height: 225px;
  padding: 27px 22px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e9dfd1;
  border-radius: 14px;
  box-shadow: 0 9px 24px rgba(48, 35, 30, 0.05);
}

.cga-hiw-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #94651f, #d2a752);
}

.cga-hiw-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: #9a6b25;
  background: #faf4e9;
  border: 1px solid #dfc48f;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cga-hiw-step h3 {
  margin: 0 0 11px;
  color: #30231e;
  font-family: inherit;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
}

.cga-hiw-step p {
  margin: 0;
  color: #746c65;
  font-size: 15px;
  line-height: 1.65;
}

/* Help link */
.cga-hiw-help {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  color: #70675f;
  font-size: 15px;
}

.cga-hiw-help a {
  color: #93651f;
  font-weight: 600;
  text-decoration: none;
}

.cga-hiw-help a:hover {
  color: #30231e;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 849px) {
  .cga-hiw-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 549px) {
  .cga-how-it-works {
    margin: 32px 0;
    padding: 36px 18px 28px;
    border-radius: 15px;
  }

  .cga-hiw-header {
    margin-bottom: 27px;
  }

  .cga-hiw-header h2 {
    font-size: 31px;
  }

  .cga-hiw-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cga-hiw-step {
    min-height: 0;
    padding: 23px 20px;
  }

  .cga-hiw-help {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}