.cgb-hero3 {
  background-color: #f2f3f5;
  padding: 40px 0;
  padding-top: 20px;
  box-sizing: border-box;
}
@media (min-width: 920px) {
  .cgb-hero3 { padding: 60px 0; padding-top: 20px; }
}
.cgb-hero3 *,
.cgb-hero3 *:before,
.cgb-hero3 *:after {
  box-sizing: border-box;
}
.cgb-hero3__container {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cgb-hero3__title {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: center;
  color: #131313;
  margin: 0 auto 24px;
  max-width: 900px;
}
@media (min-width: 620px) {
  .cgb-hero3__title { font-size: 36px; }
}
@media (min-width: 920px) {
  .cgb-hero3__title { font-size: 56px; margin-bottom: 30px; }
}
@media (min-width: 1200px) {
  .cgb-hero3__title { font-size: 68px; margin-bottom: 40px; }
}
.cgb-hero3__desc {
  display: block;
  color: rgba(19, 19, 19, 0.7);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  max-width: 852px;
  width: 100%;
  margin: 0 auto 30px;
}
@media (min-width: 920px) {
  .cgb-hero3__desc { font-size: 20px; }
}
@media (min-width: 1200px) {
  .cgb-hero3__desc { font-size: 22px; margin-bottom: 40px; }
}
.cgb-hero3__actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  margin-bottom: 48px;
  flex-direction: column;
}
@media (min-width: 920px) {
  .cgb-hero3__actions { margin-bottom: 56px; flex-direction: row; }
}
.cgb-hero3__btn {
  display: block;
  flex: 1;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  width: 100%;
  padding: 20px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.35s ease;
}
.cgb-hero3__btn--primary {
  background-color: rgb(3, 137, 203);
  border: 1px solid rgb(3, 137, 203);
  color: #fff;
}
.cgb-hero3__btn--primary:hover {
  background-color: rgb(2, 112, 167);
}
.cgb-hero3__btn--outline {
  background-color: transparent;
  border: 1px solid rgb(3, 137, 203);
  color: rgb(3, 137, 203);
}
.cgb-hero3__btn--outline:hover {
  background-color: rgba(3, 137, 203, 0.08);
}
.cgb-hero3__btn-wrap {
  position: relative;
  display: flex;
  flex: 1;
}
.cgb-hero3__btn-wrap .cgb-hero3__btn {
  width: 100%;
}
.cgb-hero3__badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background-color: rgb(125, 222, 146);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-10deg);
}

/* ── Phone mockup ─────────────────────────────────────────────────────────── */
.cgb-hero3__phone-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 920px) {
  .cgb-hero3__phone-wrap { max-width: 980px; padding: 0 100px; }
}
@media (min-width: 1200px) {
  .cgb-hero3__phone-wrap { padding: 0 120px; }
}
.cgb-hero3__lines {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
@media (min-width: 920px) {
  .cgb-hero3__lines { display: block; }
}
.cgb-hero3__line {
  fill: none;
  stroke: rgba(3, 137, 203, 0.35);
  stroke-width: 1.5;
  stroke-linejoin: miter;
}
.cgb-hero3__chip {
  display: none;
  position: absolute;
  width: 72px;
  height: 72px;
  padding: 12px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(19, 19, 19, 0.08);
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.cgb-hero3__chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 920px) {
  .cgb-hero3__chip { display: flex; }
}
.cgb-hero3__chip--left { left: 0; }
.cgb-hero3__chip--right { right: 0; }
.cgb-hero3__chip--1 { top: 6%; }
.cgb-hero3__chip--2 { top: calc(50% - 36px); }
.cgb-hero3__chip--3 { top: 78%; }

.cgb-hero3__phone {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 321/656;
  background-color: #131313;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(19, 19, 19, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cgb-hero3__phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background-color: #131313;
  border-radius: 16px;
  z-index: 3;
}
.cgb-hero3__phone-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px 4px;
  background-color: #fff;
  border-radius: 32px 32px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #131313;
}
.cgb-hero3__phone-status {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #131313;
}
.cgb-hero3__phone-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cgb-hero3__phone-logo {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0389CB, #6CABFC);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cgb-hero3__phone-name {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #131313;
  text-align: left;
}
.cgb-hero3__phone-header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(19, 19, 19, 0.55);
}
.cgb-hero3__phone-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  background-color: #f2f3f5;
  overflow-y: hidden;
}
.cgb-hero3__phone-msg {
  display: none;
  max-width: 78%;
  padding: 9px 12px;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cgb-hero3__phone-msg.is-shown {
  display: block;
}
.cgb-hero3__phone-msg.is-active {
  opacity: 1;
  transform: translateY(0);
}
.cgb-hero3__phone-msg--in {
  align-self: flex-start;
  background-color: #fff;
  color: #131313;
  border-bottom-left-radius: 4px;
}
.cgb-hero3__phone-msg--out {
  align-self: flex-end;
  background-color: #131313;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.cgb-hero3__phone-input {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: #fff;
  border-radius: 0 0 32px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.cgb-hero3__phone-input-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}
.cgb-hero3__phone-input-text {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(19, 19, 19, 0.4);
  text-align: left;
}
.cgb-hero3__phone-input-mic {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgb(3, 137, 203);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cgb-anim--fade {
  opacity: 0;
  transition: opacity 0.65s ease var(--delay, 0s);
}
.cgb-anim--fade.is-visible {
  opacity: 1;
}
