/* ===== SLIDER ===== */
.g4a-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 96px);
  min-height: 500px;
  max-height: 800px;
  background: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}

/* ===== SLIDE — hidden by default ===== */
.g4a-sl {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.g4a-sl--on {
  display: flex;
  align-items: center;
}

/* ===== BACKGROUND ===== */
.g4a-sl-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.g4a-sl-bg video,
.g4a-sl-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g4a-sl-bg--dark {
  background: #0d1117;
}

.g4a-sl-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.15) 100%);
}

.g4a-sl-ov--full {
  background: rgba(0,0,0,0.60);
}

/* ===== CONTENT ===== */
.g4a-sl-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.g4a-tag {
  display: inline-block;
  background: #e8192a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.g4a-h1 {
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.g4a-typed { color: #e8192a; }

.g4a-p {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 0 28px;
}

.g4a-note {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  font-family: 'Inter', sans-serif;
}

.g4a-note strong { color: rgba(255,255,255,0.55); }

/* ===== BUTTONS ===== */
.g4a-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.g4a-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.g4a-btn--red {
  background: #e8192a;
  border-color: #e8192a;
  color: #fff;
}

.g4a-btn--red:hover {
  background: #ff2d3f;
  border-color: #ff2d3f;
  color: #fff;
}

.g4a-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
}

.g4a-btn--ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* ===== DOMAIN FORM ===== */
.g4a-dform { margin: 0; }

.g4a-drow {
  display: flex;
  align-items: stretch;
  max-width: 520px;
  margin-bottom: 10px;
  height: 46px;
}

.g4a-dinput {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: #fff;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.g4a-dinput:focus {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
}

.g4a-dinput::placeholder { color: rgba(255,255,255,0.28); }

.g4a-dbtn {
  height: 46px;
  padding: 0 18px;
  background: #e8192a;
  border: 1px solid #e8192a;
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
  box-sizing: border-box;
}

.g4a-dbtn:hover { background: #ff2d3f; border-color: #ff2d3f; }

.g4a-dbtn--tr {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  border-left: none;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  padding: 0 13px;
}

.g4a-dbtn--tr:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
}

.g4a-dadv {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.g4a-safe {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

/* ===== ARROWS ===== */
.g4a-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.g4a-arr:hover {
  background: #e8192a;
  border-color: #e8192a;
  color: #fff;
}

.g4a-arr--prev { left: 18px; }
.g4a-arr--next { right: 18px; }

/* ===== DOTS ===== */
.g4a-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.g4a-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.g4a-dot--on {
  background: #e8192a;
  transform: scale(1.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .g4a-slider {
    height: 100svh;
    max-height: none;
    min-height: 480px;
  }

  .g4a-sl-body { padding: 0 20px; }
  .g4a-h1 { font-size: 28px; }
  .g4a-p { font-size: 13px; }
  .g4a-drow { max-width: 100%; }
  .g4a-arr { width: 34px; height: 34px; font-size: 20px; }
  .g4a-arr--prev { left: 10px; }
  .g4a-arr--next { right: 10px; }
}